14 lines
413 B
C#
14 lines
413 B
C#
using AutoMapper;
|
|
|
|
namespace KonSoft.TenantManagement;
|
|
|
|
public class TenantManagementApplicationAutoMapperProfile : Profile
|
|
{
|
|
public TenantManagementApplicationAutoMapperProfile()
|
|
{
|
|
/* You can configure your AutoMapper mapping configuration here.
|
|
* Alternatively, you can split your mapping configurations
|
|
* into multiple profile classes for a better organization. */
|
|
}
|
|
}
|