mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 00:46:31 +00:00
11 lines
286 B
C#
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; }
|
|
}
|