Skip to content

Commit

Permalink
Make fields required
Browse files Browse the repository at this point in the history
  • Loading branch information
MH321Productions committed Mar 5, 2024
1 parent e33b312 commit f281ded
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions AdminApi.Sdk/Endpoints/Identities/Types/GetIdentityResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public class LastLoginInformation

public class Quota
{
public string Id { get; set; }
public string Source { get; set; }
public Metric Metric { get; set; }
public int Max { get; set; }
public uint Usage { get; set; }
public string Period { get; set; }
public required string Id { get; set; }
public required string Source { get; set; }
public required Metric Metric { get; set; }
public required int Max { get; set; }
public required uint Usage { get; set; }
public required string Period { get; set; }
}
8 changes: 4 additions & 4 deletions AdminApi.Sdk/Endpoints/Tiers/Types/TierQuotaDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ namespace Backbone.AdminApi.Sdk.Endpoints.Tiers.Types;

public class TierQuotaDefinition
{
public string Id { get; set; }
public Metric Metric { get; set; }
public int Max { get; set; }
public string Period { get; set; }
public required string Id { get; set; }
public required Metric Metric { get; set; }
public required int Max { get; set; }
public required string Period { get; set; }
}

0 comments on commit f281ded

Please sign in to comment.