namespace CAPI.Custom.Entities { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("pal_vUserShared")] public class vUserShared : IEntity, IViewEntity { [Column("addressCompany")] public string addressCompany { get; set; } [Column("addressPhysical")] public string addressPhysical { get; set; } [Column("addressPostal")] public string addressPostal { get; set; } [Column("birthDate")] public DateTime? birthDate { get; set; } [Column("company")] public string company { get; set; } [Column("cookieId")] public string cookieId { get; set; } [Column("customerCode")] public string customerCode { get; set; } [Column("dateCreated")] public DateTime? dateCreated { get; set; } [Column("dateLoggedOn")] public DateTime? dateLoggedOn { get; set; } [Column("dateUpdated")] public DateTime? dateUpdated { get; set; } [Column("email")] public string email { get; set; } [Column("idNumber")] public string idNumber { get; set; } [Column("isActive")] public bool? isActive { get; set; } [Column("isReset")] public bool? isReset { get; set; } [Column("isSetup")] public bool? isSetup { get; set; } [Column("isTermsAccepted")] public bool? isTermsAccepted { get; set; } [Column("modules")] public string modules { get; set; } [Column("name")] public string name { get; set; } [Column("password")] public string password { get; set; } [Key] [Column("recId")] public int recId { get; set; } [Column("resetCode")] public string resetCode { get; set; } [Column("surname")] public string surname { get; set; } [Column("tel")] public string tel { get; set; } [Column("title")] public string title { get; set; } [Column("userDisplay")] public string userDisplay { get; set; } [Column("userType")] public int? userType { get; set; } [Column("vatNum")] public string vatNum { get; set; } } }