mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-08-24 16:18:45 +08:00
16 lines
291 B
C#
16 lines
291 B
C#
using System.Collections.Generic;
|
|
using OpenAuth.Domain.Model;
|
|
|
|
namespace OpenAuth.App.DTO
|
|
{
|
|
public class MenuForUserResponse
|
|
{
|
|
private IList<Menu> _menus = new List<Menu>();
|
|
|
|
public IList<Menu> Menus
|
|
{
|
|
get { return _menus; }
|
|
}
|
|
}
|
|
}
|