-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c5be53
commit e3f5aac
Showing
7 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
server/StrDss.Model/OrganizationDtos/JurisdictionsViewDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace StrDss.Model.OrganizationDtos | ||
{ | ||
public class JurisdictionsViewDto | ||
{ | ||
public long OrganizationId { get; set; } | ||
public string OrganizationNm { get; set; } = null!; | ||
[JsonPropertyName("shapeFileId")] | ||
public string OrganizationCd { get; set; } = null!; | ||
public bool? IsPrincipalResidenceRequired { get; set; } | ||
public bool? IsStrProhibited { get; set; } | ||
public bool? IsBusinessLicenceRequired { get; set; } | ||
public string? EconomicRegionDsc { get; set; } | ||
public long? ManagingOrganizationId { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace StrDss.Model.OrganizationDtos | ||
{ | ||
public class LocalGovViewDto | ||
{ | ||
public LocalGovViewDto() | ||
{ | ||
Jurisdictions = new List<JurisdictionsViewDto>(); | ||
} | ||
public long OrganizationId { get; set; } | ||
public string OrganizationNm { get; set; } = null!; | ||
public string? LocalGovernmentType { get; set; } | ||
public string OrganizationCd { get; set; } = null!; | ||
public virtual ICollection<JurisdictionsViewDto> Jurisdictions { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters