This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
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; }
}