15 lines
370 B
C#
15 lines
370 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SteUp.Shared.Core.Dto;
|
|
|
|
public class RetrieveGrigliaPluRequestDto
|
|
{
|
|
[JsonPropertyName("codMdep")]
|
|
public string? CodMdep { get; set; }
|
|
|
|
[JsonPropertyName("codJfas")]
|
|
public string? CodJfas { get; set; }
|
|
|
|
[JsonPropertyName("activityTypeId")]
|
|
public string? ActivityTypeId { get; set; }
|
|
} |