using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // // This is here so CodeMaid doesn't reorganize this document // namespace LiMan.DB.DBModels { [Table("Applicativi")] public partial class ApplicativoModel { #region Public Properties [Key] [MaxLength(50)] public string CodApp { get; set; } = ""; [MaxLength(250)] public string Descrizione { get; set; } = ""; [MaxLength(2500)] public string TplConnString { get; set; } = ""; /// /// Tipo Applicazione /// public string Tipo { get; set; } = ""; #endregion Public Properties } }