using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models { /// [Keyless] public class Sostituzione { /// azienda public string? tscodazi { get; set; } /// tecnico public string? tscodtec { get; set; } /// zona public string? tscodzon { get; set; } /// Inizio sostituzione public DateTime? tsdatain { get; set; } /// Fine sostituzione public DateTime? tsdatafi { get; set; } /// codice sostituzione public string? tscodsos { get; set; } } }