mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 02:36:30 +00:00
Refactor annotation tool from WPF desktop app to .NET API
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
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user