Infrastructure/OpenAuth.App/BaseApp/OrgManager/Request/QueryOrgListReq.cs

16 lines
311 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-01-17 14:08:37 +08:00
using OpenAuth.App.BaseApp.Base;
2024-11-13 09:19:06 +08:00
namespace OpenAuth.App.Request
{
public class QueryOrgListReq : PageReq
{
public long OrgId { get; set; }
}
}