mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:06:30 +00:00
10 lines
224 B
C#
10 lines
224 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Azaion.Common.DTO;
|
|
|
|
public class LabelInfo
|
|
{
|
|
[JsonProperty("c")] public List<int> Classes { get; set; } = null!;
|
|
|
|
[JsonProperty("d")] public DateTime ImageDateTime { get; set; }
|
|
} |