19 lines
425 B
C#
19 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GPW.CORE.Data.DTO
|
|
{
|
|
public class MenuItemDTO
|
|
{
|
|
public string Url { get; set; } = "";
|
|
public string Title { get; set; } = "";
|
|
public string Descript { get; set; } = "";
|
|
public int Group { get; set; } = 0;
|
|
public int Num { get; set; } = 0;
|
|
|
|
}
|
|
}
|