namespace Yw.BIMFace { /// /// AccessToken 响应Model /// [Serializable] public class AccessTokenResponseModel { /// /// token 的过期时间 /// [JsonProperty("expireTime", NullValueHandling = NullValueHandling.Ignore)] public DateTime ExpireTime { get; set; } /// /// token 内容值 /// [JsonProperty("token", NullValueHandling = NullValueHandling.Ignore)] public string Token { get; set; } /// /// /// public override string ToString() { return $"AccessTokenResponseModel [token={this.Token}, expireTime={this.ExpireTime}]"; } } }