using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; namespace IRaCIS.Core.Infra.EFCore.Dto { public class SetInspectionEnumValueDto { [NotDefault] public Guid TrialId { get; set; } public List Items { get; set; } } public class SetInspectionEnum { public string Identification { get; set; } public string Json { get; set; } } }