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

18 lines
400 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepKontrOpis
{
public decimal SklepId { get; set; }
public decimal SklepKontrId { get; set; }
public short Znaczenie { get; set; }
public string Tekst { get; set; } = null!;
public virtual SklepKontr SklepKontr { get; set; } = null!;
}