| 1234567891011121314151617181920 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LoginModel
- {
- public class ErrorMsg
- {
- public int code { get; set; } = 200;
- public string msg { get; set; } = "";
- public static string JsonString(ErrorMsg errmsg)
- {
- return JsonConvert.SerializeObject(errmsg);
- }
- }
- }
|