18 lines
377 B
C#
18 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class TowPowiazanie
|
|
{
|
|
public decimal TowId { get; set; }
|
|
|
|
public short Znaczenie { get; set; }
|
|
|
|
public decimal PowTowId { get; set; }
|
|
|
|
public virtual Towar PowTow { get; set; } = null!;
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
}
|