13 lines
318 B
C#
13 lines
318 B
C#
|
using System.Collections.Generic;
|
||
|
using CodeLiturgy.Data.Application.Users;
|
||
|
using MapTo;
|
||
|
|
||
|
namespace CodeLiturgy.Data.Application
|
||
|
{
|
||
|
[MapFrom(typeof(SiteEnvironment))]
|
||
|
public partial class SiteEnvironmentCreate
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
public List<Site> Sites { get; set; }
|
||
|
}
|
||
|
}
|