示例#1
0
        public async Task <IActionResult> AddApiProperties(ClientPropertyDto apiProperties)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelStateErrors));
            }
            var result = await _clientAppService.AddClientPropertyAsync(apiProperties);

            return(ResultResponse(result, "添加ApiProperties成功"));
        }