Esempio n. 1
0
        public async Task <IActionResult> RemoveApiProperties([FromBody] int propertiesId)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelStateErrors));
            }
            var result = await _clientAppService.DeleteClientPropertyAsync(propertiesId);

            return(ResultResponse(result, "删除ApiProperties成功"));
        }