namespace Modules.Library.Domain.Entities; public interface IOrderableItem { public ushort Order { get; } public void SetOrder(ushort order); }