using DTO; using Entities; using Model; namespace ApiMappeur { public static class SkinMapper { public static Skin ToModel(this SkinEntity entity) { throw new NotImplementedException(); } public static SkinDto ToDto(this Skin item) { return new SkinDto() { Name = item.Name, Description = item.Description, Icon = item.Icon, Price = item.Price }; } } }