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

22 lines
549 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepNrRej
{
public decimal SklepId { get; set; }
public decimal SklepKontrId { get; set; }
public string NrFormat { get; set; } = null!;
public string NrWpisany { get; set; } = null!;
public short WyborKart { get; set; }
public virtual SklepKontr SklepKontr { get; set; } = null!;
public virtual ICollection<SklepNrRejKarta> SklepNrRejKarta { get; set; } = new List<SklepNrRejKarta>();
}