using Azaion.Annotations.Enums; namespace Azaion.Annotations.DTOs; public class DatasetItem { public string AnnotationId { get; set; } = string.Empty; public string ImageName { get; set; } = string.Empty; public string ThumbnailPath { get; set; } = string.Empty; public AnnotationStatus Status { get; set; } public DateTime CreatedDate { get; set; } public string? CreatedEmail { get; set; } public string? FlightName { get; set; } public AnnotationSource Source { get; set; } public bool IsSeed { get; set; } public bool IsSplit { get; set; } }