Skip to content

Commit

Permalink
fix max authorized contact number (#1766)
Browse files Browse the repository at this point in the history
# Description

This PR includes the following proposed change(s):

- fix max authorized contact number
  • Loading branch information
peggy-quartech authored Nov 15, 2024
1 parent 60620d1 commit 6e3edc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Spd.Resource.Repository/Org/Contract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public record Org
}
public record OrgResult : Org
{
public int MaxContacts { get; } = 6;
public int MaxPrimaryContacts { get; } = 2;
public int MaxContacts { get; set; } = 6;
public int MaxPrimaryContacts { get; set; } = 2;
public string? AccessCode { get; set; }
public string? OrganizationName { get; set; }
public string? OrganizationLegalName { get; set; }
Expand Down

0 comments on commit 6e3edc5

Please sign in to comment.