2022-11-17 00:17:44 +03:00
|
|
|
using System;
|
|
|
|
using MapTo;
|
|
|
|
|
2022-11-18 01:39:36 +03:00
|
|
|
namespace CodeLiturgy.Data.Application
|
2022-11-17 00:17:44 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
[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; }
|
2022-11-17 01:17:37 +03:00
|
|
|
|
2022-11-22 18:05:35 +03:00
|
|
|
public SiteType SiteType { get; set; }
|
2022-11-17 01:17:37 +03:00
|
|
|
|
2022-11-17 00:17:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|