19 lines
462 B
C#
19 lines
462 B
C#
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<CanvassItemDto> Items { get; set; } = new();
|
|
}
|
|
}
|