Files
annotations/Web/Azaion.Web/Azaion.Repository/Entities/Annotation.cs
T
2024-07-16 14:18:55 +03:00

11 lines
286 B
C#

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; }
}