What is a good way to map a
public class House { public string ImageUrl { get; set; } }
with a
public class HouseModel { public IFormFile ImageUrl { get; set ;} }
using AutoMapper? Should I change the House public string ImageUrl to a public byte[] ImageUrl?
Thank you!!