Taylohtio/IDP/webapi/webapi.Infrastructure/Model/UserCondo.cs

21 lines
459 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace webapi.Infractructure.Model
{
public class UserPmc
{
public Guid PmcId { get; set; }
public string PmcName { get; set; }
public IList<UserCondo> Condos{ get; set; }
}
public class UserCondo {
public Guid SiteId { get; set; }
public string CondoName { get; set; }
}
}