using Newtonsoft.Json; namespace dy.net.dto { public class FollowErrorDto { /// /// /// [JsonProperty("followings")] public object Followings { get; set; } /// /// 8 - 用户未登录 /// [JsonProperty("status_code")] public int StatusCode { get; set; } /// /// 用户未登录 /// [JsonProperty("status_msg")] public string StatusMsg { get; set; } } }