a2171e643d
- FTP - Gomba - Icoel - MultiCcn - OSAI - SqlDB
36 lines
945 B
C#
36 lines
945 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.SqlDb.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("ActList")]
|
|
public partial class ActListModel
|
|
{
|
|
[Key, Column("IdxAct"), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; } = 0;
|
|
|
|
public DateTime DtRif { get; set; } = DateTime.Today;
|
|
|
|
[StringLength(50)]
|
|
public string Source { get; set; } = "IN";
|
|
|
|
[StringLength(50)]
|
|
public string Dest { get; set; } = "OUT";
|
|
|
|
[StringLength(250)]
|
|
public string Action { get; set; } = "";
|
|
|
|
[StringLength(2500)]
|
|
public string Value { get; set; } = "";
|
|
|
|
}
|
|
}
|