You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
400 B
25 lines
400 B
2 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.Pda.Models;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class PdaMenuGroupDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public string title { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public int groupSort { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public List<PdaMenuDto> list { get; set; }
|
||
|
}
|