| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.ResourceManager.Compute.Models |
| | 9 | | { |
| | 10 | | /// <summary> The Usage Names. </summary> |
| | 11 | | public partial class UsageName |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of UsageName. </summary> |
| 0 | 14 | | internal UsageName() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of UsageName. </summary> |
| | 19 | | /// <param name="value"> The name of the resource. </param> |
| | 20 | | /// <param name="localizedValue"> The localized name of the resource. </param> |
| 288 | 21 | | internal UsageName(string value, string localizedValue) |
| | 22 | | { |
| 288 | 23 | | Value = value; |
| 288 | 24 | | LocalizedValue = localizedValue; |
| 288 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> The name of the resource. </summary> |
| 288 | 28 | | public string Value { get; } |
| | 29 | | /// <summary> The localized name of the resource. </summary> |
| 288 | 30 | | public string LocalizedValue { get; } |
| | 31 | | } |
| | 32 | | } |