mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-08-24 16:18:45 +08:00
13 lines
212 B
C#
13 lines
212 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OpenAuth.App.DTO
|
|
{
|
|
public class MenuForUserRequest
|
|
{
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|