2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/ObservatoryExplorer/ExplorerUIResults.cs
2024-01-30 20:48:55 -05:00

20 lines
440 B
C#

using Observatory.Framework;
namespace Observatory.Explorer
{
public class ExplorerUIResults
{
[ColumnSuggestedWidth(300)]
public string Time { get; set; }
[ColumnSuggestedWidth(350)]
public string BodyName { get; set; }
[ColumnSuggestedWidth(400)]
public string Description { get; set; }
[ColumnSuggestedWidth(600)]
public string Details { get; set; }
}
}