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

16 lines
312 B
C#

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