Taylohtio/FBAUsersSearch/CustomFBADataSource/CodeFiles/CondoInfo.cs

18 lines
423 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Taloyhtio.CustomFBADataSource.CodeFiles
{
public class CondoInfo
{
public Guid Id { get; set; }
public Guid PmcId { get; set; }
public string Url { get; set; }
public string Title { get; set; }
public string PmcRelativeUrl { get; set; }
}
}