| 12345678910111213141516171819202122232425262728293031 |
- using Newtonsoft.Json;
- namespace DaJiaoYan.Models
- {
- public class AliyunAccessModel
- {
- //public int Status { get; set; }
- [JsonProperty(PropertyName = "endpoint")]
- public string EndPoint { get; set; }
- [JsonProperty(PropertyName = "access_key_id")]
- public string AccessKeyId { get; set; }
- [JsonProperty(PropertyName = "access_key_secret")]
- public string AccessKeySecret { get; set; }
- [JsonProperty(PropertyName = "security_token")]
- public string SecurityToken { get; set; }
- /// <summary>
- /// 过期时间
- /// </summary>
- [JsonProperty(PropertyName = "expiration")]
- public long Expiration { get; set; }
- [JsonProperty(PropertyName = "bucket_name")]
- public string BucketName { get; set; }
- }
- }
|