Files
limanapp/LiMan.DB/DBModels/ApplicativoModel.cs
T
2024-07-18 16:19:30 +02:00

28 lines
686 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
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; } = "";
#endregion Public Properties
}
}