-
Notifications
You must be signed in to change notification settings - Fork 34
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
0271ab2
commit 3610435
Showing
4 changed files
with
89 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
namespace YuukiPS_Launcher.json | ||
{ | ||
public class MetaData | ||
{ | ||
public string key1 { get; set; } | ||
public string key2 { get; set; } | ||
public string version { get; set; } | ||
public string url_os { get; set; } | ||
public string url_cn { get; set; } | ||
public string md5_os { get; set; } | ||
public string md5_cn { get; set; } | ||
public string key2_os { get; set; } | ||
public string key2_cn { get; set; } | ||
public string api_os { get; set; } | ||
public string api_cn { get; set; } | ||
} | ||
|
||
public class Original | ||
{ | ||
public MetaData MetaData { get; set; } | ||
public UserAssembly UserAssembly { get; set; } | ||
} | ||
|
||
public class Patched | ||
{ | ||
public MetaData MetaData { get; set; } | ||
public UserAssembly UserAssembly { get; set; } | ||
} | ||
|
||
public class KeyGS | ||
{ | ||
public Patched Patched { get; set; } | ||
public Original Original { get; set; } | ||
} | ||
|
||
public class UserAssembly | ||
{ | ||
public string key1 { get; set; } | ||
public string key2 { get; set; } | ||
public string version { get; set; } | ||
public string url_os { get; set; } | ||
public string url_cn { get; set; } | ||
public string md5_os { get; set; } | ||
public string md5_cn { get; set; } | ||
} | ||
} |