ade4d736a0
- esteso modello info x applicazione e release - nuovi metodi rest x caricare release - creazione app mancanti
33 lines
809 B
C#
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
|
|
}
|
|
} |