SoftwayWeb/Models/GiriConsegnaDaCreare.cs

16 lines
431 B
C#

using System.ComponentModel.DataAnnotations;
namespace SoftwayWeb.Models
{
public class GiriConsegnaDaCreare
{
public string? CodAutomezzo { get; set; }
public string? CodAutista { get; set; }
public string? Autista { get; set; }
public string? Automezzo { get; set; }
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
public DateTime? DataGiro { get; set; }
}
}