Skip to content

Commit

Permalink
Remove optional flag on Employee.PersonelType
Browse files Browse the repository at this point in the history
ref #277
  • Loading branch information
adamelfstrom committed Sep 20, 2023
1 parent d611d86 commit 79d7eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FortnoxSDK/Entities/Employees/Employee.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class Employee

///<summary> Personnel type. Validates against allowed values specified below. </summary>
[JsonProperty]
public PersonelType? PersonelType { get; set; }
public PersonelType PersonelType { get; set; }

///<summary> True if employee is inactive </summary>
[JsonProperty]
Expand Down

0 comments on commit 79d7eec

Please sign in to comment.