namespace Azaion.Repository.Entities; public class Annotation { public Guid Id { get; set; } public Guid MediaId { get; set; } public string ImagePath { get; set; } = null!; public string LabelPath { get; set; } = null!; public DateTime CreatedDate { get; set; } }