using AutoMapper; using Microsoft.AspNetCore.JsonPatch; using Microsoft.AspNetCore.JsonPatch.Operations; using BackendPIA.Models; using BackendPIA.Forms; namespace BackendPIA.Profiles { public class PrizeProfile : Profile { public PrizeProfile() { CreateMap(); CreateMap, JsonPatchDocument>(); CreateMap, Operation>();  } } }