45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace VirtualTask.Models
|
|
{
|
|
public class Tecnici
|
|
{
|
|
[Display(Name = "AZIENDA")]
|
|
public string? tccodazi { get; set; }
|
|
|
|
[Display(Name = "CODICE")]
|
|
public string? tccodice { get; set; }
|
|
|
|
[Display(Name = "DESCRIZIONE")]
|
|
public string? tcdescri { get; set;}
|
|
|
|
[Display(Name = "TELEFONO")]
|
|
public string? tctelef1 { get; set;}
|
|
|
|
[Display(Name = "UTENTE")]
|
|
public string? tcuser { get; set;}
|
|
|
|
[Display(Name = "PASSWORD")]
|
|
public string? tcpwd { get; set;}
|
|
|
|
[Display(Name = "COSTO ORDINARIO")]
|
|
[Column(TypeName = "decimal(18, 4)")]
|
|
public decimal? tccoor { get; set;}
|
|
|
|
[Display(Name = "COSTO NOTTURNO")]
|
|
[Column(TypeName = "decimal(18, 4)")]
|
|
public decimal? tccono { get; set;}
|
|
|
|
[Display(Name = "COSTO STRAORDINARIO")]
|
|
[Column(TypeName = "decimal(18, 4)")]
|
|
public decimal? tccost { get; set;}
|
|
|
|
[Display(Name = "COSTO FESTIVO")]
|
|
[Column(TypeName = "decimal(18, 4)")]
|
|
public decimal? tccofe { get; set;}
|
|
|
|
}
|
|
}
|