30 lines
462 B
C#
30 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Dto
|
|
{
|
|
public class SetDictionaryValueDto
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
|
|
public List<SetDictionaryDto> Items { get; set; }
|
|
|
|
}
|
|
|
|
public class SetDictionaryDto
|
|
{
|
|
public string Identification { get; set; }
|
|
|
|
public string Json { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|