20 lines
377 B
C#
20 lines
377 B
C#
using MapTo;
|
|
|
|
namespace CodeLiturgy.Data.Application
|
|
{
|
|
[MapFrom(typeof(Site))]
|
|
public partial class SiteCreate
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Domain { get; set; }
|
|
|
|
public string Ip { get; set; }
|
|
|
|
public EnvironmentType EnvironmentType { get; set; }
|
|
|
|
}
|
|
}
|