10 lines
284 B
C#
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;
|
|
} |