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

20 lines
441 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepNotatki
{
public decimal SklepId { get; set; }
public decimal SklepTowId { get; set; }
public short Kolejnosc { get; set; }
public string Tekst { get; set; } = null!;
public short KoniecLinii { get; set; }
public virtual SklepTowar SklepTowar { get; set; } = null!;
}