mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
20 lines
440 B
C#
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; }
|
|
}
|
|
}
|