18 lines
386 B
C#
18 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepTowZdjecia
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepTowId { get; set; }
|
|
|
|
public short Kolejnosc { get; set; }
|
|
|
|
public decimal SklepZasobId { get; set; }
|
|
|
|
public virtual SklepTowar SklepTowar { get; set; } = null!;
|
|
}
|