c6dfa7915b
- gestione LogCodImp - migrazione
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static Core.Enum;
|
|
|
|
namespace LiMan.DB.DBModels
|
|
{
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
//[Index(nameof(Installazione), nameof(Active), nameof(DiskStatus))]
|
|
[Table("LogCodImp")]
|
|
public partial class LogCodImp
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxLogCodImp { get; set; }
|
|
public int IdxLic { get; set; } = 0;
|
|
public int IdxSubLic { get; set; } = 0;
|
|
public string CodApp { get; set; } = "";
|
|
public string CodImpOld { get; set; } = "";
|
|
public string CodImpNew { get; set; } = "";
|
|
public DateTime DtMod { get; set; } = DateTime.Now;
|
|
|
|
|
|
[ForeignKey("IdxLic")]
|
|
public virtual LicenzaModel LicenzaNav { get; set; }
|
|
[ForeignKey("CodApp")]
|
|
public virtual ApplicativoModel ApplicativoNav { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|