11 lines
242 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Attachments.Profiles
{
public class AttachmentsProfiles:AutoMapper.Profile
{
public AttachmentsProfiles()
{
CreateMap<Db.Attachment, Models.Attachment>();
}
}
}