mirror of https://github.com/EasyAbp/EShop.git
10 changed files with 76 additions and 8 deletions
@ -0,0 +1,18 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
|
|||
namespace EasyAbp.EShop.Products.Categories.Dtos |
|||
{ |
|||
public class CategorySummaryDto : EntityDto<Guid> |
|||
{ |
|||
public string UniqueName { get; set; } |
|||
|
|||
public string DisplayName { get; set; } |
|||
|
|||
public string TreedDisplayName { get; set; } |
|||
|
|||
public int Level { get; set; } |
|||
|
|||
public Guid? ParentId { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue