29 lines
734 B
C#
29 lines
734 B
C#
using taloyhtio.idp.parser.common.domain;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace taloyhtio.idp.parser.common.model
|
|
{
|
|
[Table("mdbCondoMappings")]
|
|
public class CondoMapping : Entity, IAggregateRoot
|
|
{
|
|
public CondoMapping() { }
|
|
|
|
/// <summary>
|
|
/// Condo name as it is stored in PMS
|
|
/// </summary>
|
|
public string PMSCondoName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Id of PMC site collection in Taloyhtio.Info
|
|
/// </summary>
|
|
public Guid TaloyhtioPMCId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Id of condo web site in Taloyhtio.Info
|
|
/// </summary>
|
|
public Guid TaloyhtioCondoId { get; set; }
|
|
|
|
}
|
|
}
|