DRAB/Pcm.Db/Entities/PcfUser.cs
2025-07-11 00:18:14 +02:00

27 lines
867 B
C#

using System;
#nullable disable
namespace Pcm.Db.Entities;
public class PcfUser
{
public int PcfUserId { get; set; }
public decimal? PcfPstationId { get; set; }
public decimal? PcfCustomerId { get; set; }
public decimal? PcfLoyaltyCustomerId { get; set; }
public string Ident { get; set; }
public string PasswordHash { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int AccessProfile { get; set; }
public DateTime? ValidFrom { get; set; }
public DateTime? ValidTo { get; set; }
public string Email { get; set; }
public short Blocked { get; set; }
public short Active { get; set; }
public virtual Kontrahent PcfCustomer { get; set; }
public virtual Kontrahent PcfLoyaltyCustomer { get; set; }
public virtual Kontrahent PcfPstation { get; set; }
}