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:
Oleksandr Bezdieniezhnykh
2026-03-25 04:40:03 +02:00
parent e7ea5a8ded
commit 9e7dc290db
367 changed files with 8840 additions and 16583 deletions
+17
View File
@@ -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; }
}