20 lines
431 B
C#
20 lines
431 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepTowStraty
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepTowId { get; set; }
|
|
|
|
public short IdxRodzStrat { get; set; }
|
|
|
|
public decimal? NormaStrat { get; set; }
|
|
|
|
public short? Odliczanie { get; set; }
|
|
|
|
public virtual SklepTowar SklepTowar { get; set; } = null!;
|
|
}
|