FruitBankHybridApp/FruitBank.Common/Interfaces/IPallet.cs

11 lines
267 B
C#

using AyCode.Interfaces.Entities;
using AyCode.Interfaces.TimeStampInfo;
namespace FruitBank.Common.Interfaces;
public interface IPallet : IEntityInt, ITimeStampInfo
{
string Name { get; set; }
string Size { get; set; }
double? Weight { get; set; }
}