using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Canvass.Request { public class StartCanvassRequest { [JsonPropertyName("isInternational")] public bool IsInternational { get; set; } [JsonPropertyName("items")] public List Items { get; set; } = new(); } }