24 lines
776 B
C#
24 lines
776 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
[Keyless]
|
|
public class GiriConsegnaView
|
|
{
|
|
public string? SerialeGiro { get; set; }
|
|
public DateTime? DataGiro { get; set; }
|
|
public string? CodAutista { get; set; }
|
|
public string? Autista { get; set; }
|
|
public int? BancaliCaricati { get; set; }
|
|
public int? BancaliRecuperati { get; set; }
|
|
|
|
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
|
|
public decimal? ImportoDaRecuperare { get; set; }
|
|
|
|
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
|
|
public decimal? ImportoRecuperato { get; set; }
|
|
public DateTime? DataChiusura { get; set; }
|
|
|
|
}
|
|
}
|