<PackageReference Include="Azure.Storage.Blobs" Version="12.28.0-beta.1" />

Azure.Storage.Blobs.Models.DeleteSnapshotsOption

public enum DeleteSnapshotsOption
Required if the blob has associated snapshots. Specify one of the following two options: include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the blob itself
namespace Azure.Storage.Blobs.Models { public enum DeleteSnapshotsOption { None, [CodeGenMember("Include")] IncludeSnapshots, [CodeGenMember("Only")] OnlySnapshots } }