| | 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.Resources.Models |
| | 9 | | { |
| | 10 | | /// <summary> Information about feature. </summary> |
| | 11 | | public partial class FeatureProperties |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of FeatureProperties. </summary> |
| 0 | 14 | | internal FeatureProperties() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of FeatureProperties. </summary> |
| | 19 | | /// <param name="state"> The registration state of the feature for the subscription. </param> |
| 16 | 20 | | internal FeatureProperties(string state) |
| | 21 | | { |
| 16 | 22 | | State = state; |
| 16 | 23 | | } |
| | 24 | |
|
| | 25 | | /// <summary> The registration state of the feature for the subscription. </summary> |
| 0 | 26 | | public string State { get; } |
| | 27 | | } |
| | 28 | | } |