Azure.Storage.Blobs.Models.BlobRetentionPolicy
the retention policy which determines how long the associated data should persist.
namespace Azure.Storage.Blobs.Models
{
public class BlobRetentionPolicy : IXmlSerializable
{
public bool Enabled { get; set; }
public int? Days { get; set; }
public BlobRetentionPolicy();
}
}