using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace DTO
|
{
|
public class AreaDTO
|
{
|
public string CodeId { get; set; }
|
public string Name { get; set; }
|
public string ParentId { get; set; }
|
public string ParentName { get; set; }
|
|
public List<AreaDTO> Children { get; set; }
|
}
|
|
public class AreaDTOSearch : SearchEntity
|
{
|
public string Name { get; set; }
|
public string ParentName { get; set; }
|
|
|
|
}
|
}
|