Skip to content

Commit 98a1ebd

Browse files
authored
Normalize property text (#273)
1 parent feaeacb commit 98a1ebd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Authentication.Abstractions/AzureSubscription.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ public static class Property
103103
Environment = "Environment",
104104
Account = "Account",
105105
SubscriptionPolices = "SubscriptionPolices",
106-
AuthorizationSource = "authorizationSource",
107-
Tags = "tags";
106+
AuthorizationSource = "AuthorizationSource",
107+
Tags = "Tags";
108108
}
109109
}
110110
}

src/Authentication.Abstractions/AzureTenant.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ public class AzureTenant : IAzureTenant
4848
public static class Property
4949
{
5050
public const string TenantCategory = "TenantCategory",
51-
Country = "country",
51+
Country = "Country",
5252
CountryCode = "CountryCode",
5353
DisplayName = "DisplayName",
5454
Domains = "Domains",
55-
DefaultDomain = "defaultDomain",
56-
TenantType = "tenantType",
57-
TenantBrandingLogoUrl = "tenantBrandingLogoUrl",
55+
DefaultDomain = "DefaultDomain",
56+
TenantType = "TenantType",
57+
TenantBrandingLogoUrl = "TenantBrandingLogoUrl",
5858
Directory = "Directory";
5959
}
6060
}

0 commit comments

Comments
 (0)