CloudGamingAdmin/admin-server/CloudGaming.Api.Admin/Controllers/Apps/App/T_User_MessagesController.cs
2024-12-01 01:12:18 +08:00

13 lines
566 B
C#

using CloudGaming.Repository.Game.Entities.App;
using CloudGaming.Api.Admin.ApplicationServices.Apps.App;
namespace CloudGaming.Api.Admin.Controllers.Apps.App;
/// <summary>
/// 用户消息表 控制器
/// </summary>
[ControllerDescriptor(MenuId = "请设置菜单Id 系统菜单表中查找,如果不设置不受权限保护!", DisplayName = "用户消息表")]
public class T_User_MessagesController(IServiceProvider serviceProvider)
: AdminGameControllerBase<T_User_MessagesService,T_User_Messages,int,T_User_Messages,T_User_Messages>(serviceProvider)
{
}