56 lines
1.2 KiB
C#
56 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class Email
|
|
{
|
|
public decimal EmId { get; set; }
|
|
|
|
public decimal? UzId { get; set; }
|
|
|
|
public decimal? TEDId { get; set; }
|
|
|
|
public decimal? TERId { get; set; }
|
|
|
|
public decimal? TEWId { get; set; }
|
|
|
|
public string Nazwa { get; set; } = null!;
|
|
|
|
public string Login { get; set; } = null!;
|
|
|
|
public string Haslo { get; set; } = null!;
|
|
|
|
public string Host { get; set; } = null!;
|
|
|
|
public string Port { get; set; } = null!;
|
|
|
|
public short Auth { get; set; }
|
|
|
|
public short TLS { get; set; }
|
|
|
|
public short TLSVer { get; set; }
|
|
|
|
public string Nadawca { get; set; } = null!;
|
|
|
|
public short Kopia { get; set; }
|
|
|
|
public string? KopiaEmail { get; set; }
|
|
|
|
public short Aktywny { get; set; }
|
|
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public decimal? TEZIId { get; set; }
|
|
|
|
public decimal? TEHRId { get; set; }
|
|
|
|
public virtual TrescEmail? TED { get; set; }
|
|
|
|
public virtual TrescEmail? TER { get; set; }
|
|
|
|
public virtual TrescEmail? TEW { get; set; }
|
|
|
|
public virtual Uzytkownik? Uz { get; set; }
|
|
}
|