using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Community.Model.Build
{
///
/// 住户类别
///
public class HoldType
{
public HoldType()
{
}
///
/// 主键
///
public int Id { set; get; }
///
/// 状态
///
public string Status { set; get; }
}
}