18 lines
367 B
C#
18 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class TowWartosc
|
|
{
|
|
public decimal TowId { get; set; }
|
|
|
|
public decimal ParId { get; set; }
|
|
|
|
public int Wartosc { get; set; }
|
|
|
|
public virtual Parametr Par { get; set; } = null!;
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
}
|