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

15 lines
342 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 SiteType SiteType { get; set; }
}
}