mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 16:56:30 +00:00
9e7dc290db
Replace the WPF desktop application (Azaion.Suite, Azaion.Annotator, Azaion.Common, Azaion.Inference, Azaion.Loader, Azaion.LoaderUI, Azaion.Dataset, Azaion.Test) with a standalone .NET Web API in src/. Made-with: Cursor
18 lines
588 B
C#
18 lines
588 B
C#
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; }
|
|
}
|