9 lines
228 B
C#
9 lines
228 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SteUp.Shared.Core.Dto;
|
|
|
|
public class RetrieveStatoIspezioniRequestDto
|
|
{
|
|
[JsonPropertyName("activityIdList")]
|
|
public required List<string> ActivityIdList { get; set; }
|
|
} |