mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
24 lines
572 B
C#
24 lines
572 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Observatory.Framework
|
|
{
|
|
public class BasicGrid
|
|
{
|
|
public BasicGrid()
|
|
{
|
|
Headers = new();
|
|
Formats = new();
|
|
Items = new();
|
|
}
|
|
|
|
public readonly ObservableCollection<string> Headers;
|
|
public readonly ObservableCollection<string> Formats;
|
|
public readonly ObservableCollection<ObservableCollection<object>> Items;
|
|
}
|
|
}
|