forked from silfumus/ElectronicObserver
-
Notifications
You must be signed in to change notification settings - Fork 21
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
4f8ea21
commit 1697075
Showing
4 changed files
with
119 additions
and
7 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
24 changes: 24 additions & 0 deletions
24
ElectronicObserver/Data/PoiDbSubmission/PoiDbRouteSubmission/PoiApiHappening.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,24 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace ElectronicObserver.Data.PoiDbSubmission.PoiDbRouteSubmission; | ||
|
||
public class PoiApiHappening | ||
{ | ||
[JsonPropertyName("api_count")] | ||
public required string ApiCount { get; set; } | ||
|
||
[JsonPropertyName("api_dentan")] | ||
public required string ApiDentan { get; set; } | ||
|
||
[JsonPropertyName("api_icon_id")] | ||
public required string ApiIconId { get; set; } | ||
|
||
[JsonPropertyName("api_mst_id")] | ||
public required string ApiMstId { get; set; } | ||
|
||
[JsonPropertyName("api_type")] | ||
public required string ApiType { get; set; } | ||
|
||
[JsonPropertyName("api_usemst")] | ||
public required string ApiUsemst { get; set; } | ||
} |
21 changes: 21 additions & 0 deletions
21
ElectronicObserver/Data/PoiDbSubmission/PoiDbRouteSubmission/PoiApiItemget.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,21 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace ElectronicObserver.Data.PoiDbSubmission.PoiDbRouteSubmission; | ||
|
||
public class PoiApiItemget | ||
{ | ||
[JsonPropertyName("api_getcount")] | ||
public required string ApiGetcount { get; set; } | ||
|
||
[JsonPropertyName("api_icon_id")] | ||
public required string ApiIconId { get; set; } | ||
|
||
[JsonPropertyName("api_id")] | ||
public required string ApiId { get; set; } | ||
|
||
[JsonPropertyName("api_name")] | ||
public required string ApiName { get; set; } | ||
|
||
[JsonPropertyName("api_usemst")] | ||
public required string ApiUsemst { 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