using MediatR; namespace CMSMicroservice.Application.SitePageCQ.Commands.ReorderSitePageSections; public class ReorderSitePageSectionsCommand : IRequest { public List Items { get; set; } = new(); } public class SectionSortItem { public long Id { get; set; } public int SortOrder { get; set; } }