2024-05-16 10:37:44 +02:00

34 lines
803 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepFormaPlatnPos7
{
public decimal SklepId { get; set; }
public decimal SklepFormaId { get; set; }
public string Nazwa { get; set; } = null!;
public short Typ { get; set; }
public short Reszta { get; set; }
public short? Autoryzacja { get; set; }
public string? SerwisPlatniczy { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public decimal? FormaId { get; set; }
public decimal? Kolejnosc { get; set; }
public virtual Sklep Sklep { get; set; } = null!;
public virtual ICollection<SklepKasaFormaPlatn> SklepKasaFormaPlatn { get; set; } = new List<SklepKasaFormaPlatn>();
}