namespace Azaion.Common.Entities; public class DetectionClass { public int Id { get; set; } public string Name { get; set; } = null!; public string ShortName { get; set; } = null!; public string Color { get; set; } = null!; public double MaxSizeM { get; set; } public string? PhotoMode { get; set; } public DateTime CreatedAt { get; set; } }