mirror of
https://dev.azure.com/effectory/Survey%20Software/_git/Cloud%20Engineering
synced 2026-02-27 18:52:18 +01:00
21 lines
512 B
C#
21 lines
512 B
C#
namespace AzureRestApi.Models.Resources
|
|
{
|
|
public class Subscription
|
|
{
|
|
public string? id { get; set; }
|
|
public string? authorizationSource { get; set; }
|
|
public string? subscriptionId { get; set; }
|
|
public string? tenantId { get; set; }
|
|
public string? displayName { get; set; }
|
|
public string? state { get; set; }
|
|
|
|
public bool Enabled
|
|
{
|
|
get
|
|
{
|
|
return state == "Enabled";
|
|
}
|
|
}
|
|
}
|
|
}
|