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 { // // This is here so CodeMaid doesn't reorganize this document // [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; } = ""; } }