This commit is contained in:
bibabo 2024-07-20 16:21:02 +08:00
commit a8e7e81653
2 changed files with 25 additions and 0 deletions

View File

@ -42,5 +42,10 @@ namespace HuanMeng.MiaoYu.Model.Dto
/// 创作中心:人物模型信息 /// 创作中心:人物模型信息
/// </summary> /// </summary>
public CreateCharacterInfo CharacterInfo { get; set; } public CreateCharacterInfo CharacterInfo { get; set; }
/// <summary>
/// 记忆卡数量
/// </summary>
public int MemoryCardCount { get; set; }
} }
} }

View File

@ -0,0 +1,20 @@
using HuanMeng.MiaoYu.WebApi.Base;
using Microsoft.AspNetCore.Mvc;
namespace HuanMeng.MiaoYu.WebApi.Controllers
{ /// <summary>
/// 商城控制器
/// </summary>
[Route("api/[controller]/[action]")]
[ApiController]
public class MallController : MiaoYuControllerBase
{
public MallController(IServiceProvider _serviceProvider) : base(_serviceProvider)
{
}
//public Task<>
}
}