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