18 lines
473 B
C#
18 lines
473 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SoftwayWeb.Models
|
|
{
|
|
public class GiriConsegnaDaCreare
|
|
{
|
|
public string? CodMezzo { 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; }
|
|
|
|
public bool IsSelected { get; set; }
|
|
}
|
|
}
|