mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
28 lines
617 B
C#
28 lines
617 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Observatory.UI
|
|
{
|
|
public class ColumnSizing
|
|
{
|
|
public string PluginName { get; set; }
|
|
public string PluginVersion { get; set; }
|
|
public Dictionary<string, int> ColumnWidth
|
|
{
|
|
get
|
|
{
|
|
_columnWidth ??= new Dictionary<string, int>();
|
|
|
|
return _columnWidth;
|
|
}
|
|
|
|
set => _columnWidth = value;
|
|
}
|
|
|
|
private Dictionary<string, int>? _columnWidth;
|
|
}
|
|
}
|