Пример #1
0
 public VolumeType(string snapshotId, string name, Friend owner)
 {
     this.SnapshotId = snapshotId;
     this.Name = name;
     this.Owner = owner;
     this.IsCustom = false;
 }
Пример #2
0
 public static VolumeType Custom(string name, Friend owner)
 {
     return new VolumeType()
     {
         Name = name,
         Owner = owner,
         IsCustom = true,
     };
 }