namespace Modules.Library.Core.Domain.Common; public interface IOrderableItem { public uint Order { get; } public void SetOrder(uint order); }