22 lines
403 B
C#
22 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UIStandardWebApi.EntityDto.User
|
|
{
|
|
/// <summary>
|
|
/// 用户拥有菜单
|
|
/// </summary>
|
|
public class UserContainsMenus
|
|
{
|
|
public Guid? Id { get; set; }
|
|
|
|
public string? Text { get; set; }
|
|
|
|
|
|
public string? Value { get; set; }
|
|
}
|
|
}
|