Infrastructure/OpenAuth.App/Resources/Request/QueryResourcesReq.cs

14 lines
226 B
C#
Raw Normal View History

2025-05-13 15:18:14 +08:00
using Utils.Web.Model;
namespace OpenAuth.App.Request
2024-11-13 09:19:06 +08:00
{
public class QueryResourcesReq : PageReq
{
/// <summary>
/// TypeID
/// </summary>
public string appId { get; set; }
}
}