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; } } }