20 lines
485 B
C#
20 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class TowStraty
|
|
{
|
|
public decimal TowId { get; set; }
|
|
|
|
public short IdxRodzStrat { get; set; }
|
|
|
|
public short Odliczanie { get; set; }
|
|
|
|
public decimal? NormaStrat { get; set; }
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
|
|
public virtual ICollection<TowStratyDlaSklepu> TowStratyDlaSklepu { get; set; } = new List<TowStratyDlaSklepu>();
|
|
}
|