namespace Novelly.Api.Genres; public record GenreResponse(Guid Id, string Name); public static class GenreMapping { public static GenreResponse ToResponse(this Genre g) => new(g.Id, g.Name); }