Files
limanapp/LiMan.DB/DBModels/ApplicativoModel.cs
Samuele Locatelli ade4d736a0 Update x gestione release macchine
- esteso modello info x applicazione e release
- nuovi metodi rest x caricare release
- creazione app mancanti
2024-09-17 12:21:24 +02:00

33 lines
809 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; } = "";
/// <summary>
/// Tipo Applicazione
/// </summary>
public string Tipo { get; set; } = "";
#endregion Public Properties
}
}