示例#1
0
        public async Task <string> DeletePost([FromQuery] int postid)
        {
            await _context.DeletePostAsync(postid);

            return("true");
        }