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

16 lines
317 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class TowZdjecia
{
public decimal TowId { get; set; }
public short Kolejnosc { get; set; }
public decimal ZasobId { get; set; }
public virtual Towar Tow { get; set; } = null!;
}