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; } }