Add DRS
This commit is contained in:
@@ -1,52 +1,57 @@
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Email
|
||||
{
|
||||
public decimal EmId { get; set; }
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Email
|
||||
{
|
||||
public decimal EmId { get; set; }
|
||||
|
||||
public decimal? UzId { get; set; }
|
||||
public decimal? UzId { get; set; }
|
||||
|
||||
public decimal? TEDId { get; set; }
|
||||
public decimal? TEDId { get; set; }
|
||||
|
||||
public decimal? TERId { get; set; }
|
||||
public decimal? TERId { get; set; }
|
||||
|
||||
public decimal? TEWId { get; set; }
|
||||
public decimal? TEWId { get; set; }
|
||||
|
||||
public string Nazwa { get; set; } = null!;
|
||||
public string Nazwa { get; set; } = null!;
|
||||
|
||||
public string Login { get; set; } = null!;
|
||||
public string Login { get; set; } = null!;
|
||||
|
||||
public string Haslo { get; set; } = null!;
|
||||
public string Haslo { get; set; } = null!;
|
||||
|
||||
public string Host { get; set; } = null!;
|
||||
public string Host { get; set; } = null!;
|
||||
|
||||
public string Port { get; set; } = null!;
|
||||
public string Port { get; set; } = null!;
|
||||
|
||||
public short Auth { get; set; }
|
||||
public short Auth { get; set; }
|
||||
|
||||
public short TLS { get; set; }
|
||||
public short TLS { get; set; }
|
||||
|
||||
public short TLSVer { get; set; }
|
||||
public short TLSVer { get; set; }
|
||||
|
||||
public string Nadawca { get; set; } = null!;
|
||||
public string Nadawca { get; set; } = null!;
|
||||
|
||||
public short Kopia { get; set; }
|
||||
public short Kopia { get; set; }
|
||||
|
||||
public string? KopiaEmail { get; set; }
|
||||
public string? KopiaEmail { get; set; }
|
||||
|
||||
public short Aktywny { get; set; }
|
||||
public short Aktywny { get; set; }
|
||||
|
||||
public DateTime Zmiana { get; set; }
|
||||
public DateTime Zmiana { get; set; }
|
||||
|
||||
public decimal? TEZIId { get; set; }
|
||||
public decimal? TEZIId { get; set; }
|
||||
|
||||
public decimal? TEHRId { get; set; }
|
||||
public decimal? TEHRId { get; set; }
|
||||
|
||||
public virtual TrescEmail? TED { get; set; }
|
||||
public virtual ICollection<HarmRap> HarmRap { get; set; } = new List<HarmRap>();
|
||||
|
||||
public virtual TrescEmail? TER { get; set; }
|
||||
public virtual TrescEmail? TED { get; set; }
|
||||
|
||||
public virtual TrescEmail? TEW { get; set; }
|
||||
public virtual TrescEmail? TER { get; set; }
|
||||
|
||||
public virtual Uzytkownik? Uz { get; set; }
|
||||
}
|
||||
public virtual TrescEmail? TEW { get; set; }
|
||||
|
||||
public virtual Uzytkownik? Uz { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user