27 lines
731 B
C#
27 lines
731 B
C#
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepBank
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepBankId { get; set; }
|
|
|
|
public string Nazwa { get; set; } = null!;
|
|
|
|
public string Adres { get; set; } = null!;
|
|
|
|
public short Aktywny { get; set; }
|
|
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public decimal? BankId { get; set; }
|
|
|
|
public string? NrRozliBank { get; set; }
|
|
|
|
public string? SWIFT { get; set; }
|
|
|
|
public virtual ICollection<SklepKontoBankowe> SklepKontoBankowe { get; set; } = new List<SklepKontoBankowe>();
|
|
|
|
public virtual ICollection<SklepKontoBankoweKontr> SklepKontoBankoweKontr { get; set; } = new List<SklepKontoBankoweKontr>();
|
|
}
|