nameondocument

This commit is contained in:
Adam 2025-11-06 21:10:31 +01:00
parent 955d7ec963
commit 9b543db5eb
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@ public class ShippingItem : MgEntityBase, IShippingItem
public int? ProductId { get; set; }
public string Name { get; set; }
public string NameOnDocument { get; set; }
public string HungarianName { get; set; }
/// <summary>
/// get => ProductDto?.Name ?? Name

View File

@ -13,6 +13,8 @@ public interface IShippingItem : IEntityInt, ITimeStampInfo, IMeasurable, IMeasu
int? ProductId { get; set; }
string Name { get; set; }
string NameOnDocument { get; set; }
string HungarianName { get; set; }
int PalletsOnDocument { get; set; }