namespace DS.WMS.Core.Sys.Dtos; public class UserMenu { /// /// /// public string parentid { get; set; } /// /// /// public string id { get; set; } /// /// /// public string title { get; set; } /// /// /// public string name { get; set; } /// /// /// public string key { get; set; } /// /// /// public string component { get; set; } /// /// /// public string redirect { get; set; } /// /// /// public string icon { get; set; } /// /// /// public string path { get; set; } /// /// /// public Meta meta { get; set; } /// /// /// public List children { get; set; } } public class Meta { /// /// /// public string title { get; set; } /// /// /// public string icon { get; set; } /// /// /// public bool show { get; set; } = true; } public class MenuItem { /// /// /// public string title { get; set; } /// /// /// public string key { get; set; } /// /// /// public string icon { get; set; } }