Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/SklepZasob.cs
2026-05-19 16:45:53 +02:00

20 lines
422 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepZasob
{
public decimal SklepId { get; set; }
public short Tabela { get; set; }
public decimal Id { get; set; }
public string Typ { get; set; } = null!;
public string Sciezka { get; set; } = null!;
public virtual Sklep Sklep { get; set; } = null!;
}