Infrastructure/OpenAuth.App/ModuleManager/Response/ModulesWithElements.cs

16 lines
326 B
C#
Raw Normal View History

2024-11-13 09:19:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ModuleManager.Response
{
public class ModulesWithElements
{
public List<string> ModuleIds { get; set; }
public List<string> ElementIds { get; set; }
}
}