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() { }
///
/// Condo name as it is stored in PMS
///
public string PMSCondoName { get; set; }
///
/// Id of PMC site collection in Taloyhtio.Info
///
public Guid TaloyhtioPMCId { get; set; }
///
/// Id of condo web site in Taloyhtio.Info
///
public Guid TaloyhtioCondoId { get; set; }
}
}