using System.Linq.Expressions; namespace WatchIt.DTO.Models.Controllers.Genres.Genre; public static class GenreOrderKeys { public static readonly Dictionary>> Base = new Dictionary>> { { "id", x => x.Id }, { "name", x => x.Name }, }; }