23 lines
405 B
C#
23 lines
405 B
C#
using System;
|
|
using MapTo;
|
|
|
|
namespace CodeLiturgy.Data.Capital
|
|
{
|
|
|
|
[MapFrom(typeof(Site))]
|
|
public partial class SiteUnique
|
|
{
|
|
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; }
|
|
|
|
}
|
|
}
|
|
|