Skip to content

Commit

Permalink
Fixed a PLGX compilation issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
juanii committed Jan 27, 2019
1 parent 750688d commit 77ae265
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OnePIF/Records/Attributes/AddressComponentAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public enum AddressPart
Country
}

public AddressPart addressPart { get; }
public AddressPart addressPart { get; set; }

public AddressComponentAttribute(AddressPart addressPart)
{
Expand Down
2 changes: 1 addition & 1 deletion OnePIF/Records/Attributes/DateComponentAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public enum DatePart
Year
}

public DatePart datePart { get; }
public DatePart datePart { get; set; }

public DateComponentAttribute(DatePart datePart)
{
Expand Down
2 changes: 1 addition & 1 deletion OnePIF/Records/Attributes/MonthYearComponentAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum MonthYearPart
Year
}

public MonthYearPart monthYearPart { get; }
public MonthYearPart monthYearPart { get; set; }

public MonthYearComponentAttribute(MonthYearPart monthYearPart)
{
Expand Down

0 comments on commit 77ae265

Please sign in to comment.