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

14 lines
314 B
C#

using MapTo;
namespace CodeLiturgy.Data.Application
{
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 SiteType SiteType { get; set; }
}
}