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-21 13:35:03 -03:30

20 lines
440 B
C#

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