17 lines
No EOL
423 B
C#
17 lines
No EOL
423 B
C#
using AutoMapper;
|
|
using WebsitePanel.WebDavPortal.Mapping.Profiles.Webdav;
|
|
|
|
namespace WebsitePanel.WebDavPortal.Mapping
|
|
{
|
|
public class AutoMapperPortalConfiguration
|
|
{
|
|
public static void Configure()
|
|
{
|
|
Mapper.Initialize(
|
|
config =>
|
|
{
|
|
config.AddProfile<ResourceTableItemProfile>();
|
|
});
|
|
}
|
|
}
|
|
} |