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 Items { get; set; } } public class SetDictionaryDto { public string Identification { get; set; } public string Json { get; set; } } }