Files
SteUP_Dotnet/SteUp.Shared/Core/Dto/SchedaDto.cs
2026-02-17 09:47:14 +01:00

10 lines
284 B
C#

namespace SteUp.Shared.Core.Dto;
public class SchedaDto
{
public JtbFasiDto? Reparto { get; set; }
public string? ActivityTypeId { get; set; }
public string? Note { get; set; }
public string? Responsabile { get; set; }
public int Scadenza { get; set; } = 24;
}