33 lines
535 B
C#
33 lines
535 B
C#
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<SetInspectionEnum> Items { get; set; }
|
|
|
|
}
|
|
|
|
public class SetInspectionEnum
|
|
{
|
|
public string Identification { get; set; }
|
|
|
|
public string Json { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|