Files
Disco/Disco.Web/Areas/API/Models/DeviceBatch/DeviceBatchTimelineEventSource.cs
T
2024-12-14 16:55:37 +11:00

10 lines
337 B
C#

namespace Disco.Web.Areas.API.Models.DeviceBatch
{
public class DeviceBatchTimelineEventSource
{
public string wikiURL { get; set; }
public string wikiSection { get; set; }
public string dateTimeFormat { get { return "iso8601"; } }
public DeviceBatchTimelineEvent[] events { get; set; }
}
}