Skip to content

Commit

Permalink
Merge pull request #717 from bcgov/ricander
Browse files Browse the repository at this point in the history
Swapped Label and Value for PlatformTypeDto for FE
  • Loading branch information
Richand101 authored Oct 18, 2024
2 parents 8c19bcc + a21ab00 commit 5902ae1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions server/StrDss.Model/OrganizationDtos/PlatformTypeDto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ namespace StrDss.Model.OrganizationDtos
public class PlatformTypeDto
{
[JsonPropertyName("label")]
public string PlatformType { get; set; }
[JsonPropertyName("value")]
public string PlatformTypeNm { get; set; }
}

[JsonPropertyName("value")]
public string PlatformType { get; set; }
}


}

0 comments on commit 5902ae1

Please sign in to comment.