16 lines
420 B
C#
16 lines
420 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
[Keyless]
|
|
public class GiriConsegnaDaCreareDest
|
|
{
|
|
public string? CodMezzo { get; set; }
|
|
public string? CodAutista { get; set; }
|
|
public string? Autista { get; set; }
|
|
public string? Automezzo { get; set; }
|
|
public DateTime? DataGiro { get; set; }
|
|
public string? Seriale { get; set; }
|
|
}
|
|
}
|