12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
-
- using System;
- namespace Aliyun.OSS
- {
-
-
-
- public enum RuleStatus
- {
-
-
-
- Enabled,
-
-
-
- Disabled
- };
-
-
-
- public class LifecycleRule
- {
-
-
-
- public string ID { get; set; }
-
-
-
- public string Prefix { get; set; }
-
-
-
- public RuleStatus Status { get; set; }
-
-
-
- public int? ExpriationDays { get; set; }
-
-
-
- public DateTime? ExpirationTime { get; set; }
- }
- }
|