public BasePostResponse FirstPost([FromBody] string value) { (bool isFine, string msg) = First.CheckResult(value); var response = new BasePostResponse { IsFine = isFine, Message = msg }; return(response); }