20 lines
516 B
C#
20 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ewide.Application.Service.HouseProjectInfo.Dto
|
|
{
|
|
public class HouseProjectOutput
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Note { get; set; }
|
|
public int Sort { get; set; }
|
|
public string AreaCode { get; set; }
|
|
public string AreaName { get; set; }
|
|
public int Type { get; set; }
|
|
}
|
|
}
|