namespace Prefab.Base; /// /// Defines a contract for entities that expose an explicit sort position. /// public interface ISortOrder { /// /// Gets or sets the relative sort order for the entity. /// int SortOrder { get; set; } }