2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-13 23:34:45 -04:00
2024-01-25 23:18:02 -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; }
}
}