CodeLiturgy.Dashboard/CodeLiturgy.Data.Application/Sites/SiteCreate.cs

20 lines
373 B
C#

using MapTo;
namespace CodeLiturgy.Data.Capital
{
[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; }
}
}