Infrastructure/OpenAuth.App/ModuleManager/Request/QueryElementListReq.cs

16 lines
316 B
C#
Raw Normal View History

2024-11-13 09:19:06 +08:00
using OpenAuth.App.Request;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-05-13 15:18:14 +08:00
using Utils.Web.Model;
2024-11-13 09:19:06 +08:00
namespace OpenAuth.App.ModuleManager
{
public class QueryElementListReq : PageReq
{
public string ModuleId { get; set; }
}
}