Files
Samuele Locatelli 5d835509c1 AD:
- Update x display SOLO dei tipoDoc x FIC (no fatturare, fgurative...)
2023-10-24 11:57:25 +02:00

30 lines
811 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace SHERPA.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("AnagTipoDoc")]
public partial class AnagTipoDocModel
{
[Key, Column("IdxTipo"), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int IdxTipo { get; set; }
[MaxLength(50)]
public string CodTipo { get; set; } = "";
[MaxLength(250)]
public string Descrizione { get; set; } = "";
public int ValMult { get; set; } = 1;
public bool IsActive { get; set; } = true;
public bool CanSync { get; set; } = true;
}
}