or
public class DepositWidgetDto { public DepositWidgetDto() { Accounts = new List<string>(); } public Guid Id { get; set; } public string Number { get; set; } public List<string> SealsCodes { get; set; } public int NonRecognized { get; set; } public List<CashDto> Cash { get; set; } public List<EnvelopeDto> Envelopes { get; set; } public List<UnVerifiedDto> UnVerified { get; set; } public List<string> Accounts { get; set; } }