|
|
|
using QYMessageCenter.Model.DB;
|
|
|
|
using QYMessageCenter.Model.DTO;
|
|
|
|
|
|
|
|
namespace QYMessageCenter.Model
|
|
|
|
{
|
|
|
|
public class MappingProfiles : AutoMapper.Profile
|
|
|
|
{
|
|
|
|
// private IDictionary<string, string> storeDictionary;
|
|
|
|
|
|
|
|
public MappingProfiles()
|
|
|
|
{
|
|
|
|
CreateMap<SendMessageRequest, QYNotification>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|