-
Notifications
You must be signed in to change notification settings - Fork 35
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
Showing
27 changed files
with
1,308 additions
and
1,539 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
namespace BlueCatKoKo.Ui.Models | ||
namespace BlueCatKoKo.Ui.Models; | ||
|
||
public class AppConfig | ||
{ | ||
public class AppConfig | ||
{ | ||
public string? Name { get; set; } | ||
public string? TrayTitle { get; set; } | ||
public string? Version { get; set; } | ||
public string? Description { get; set; } | ||
public string? DownloadPath { get; set; } | ||
public string? RepositoryUrl { get; set; } | ||
public List<string>? Cookies { get; set; } | ||
} | ||
public string? Name { get; set; } | ||
public string? TrayTitle { get; set; } | ||
public string? Version { get; set; } | ||
public string? Description { get; set; } | ||
public string? DownloadPath { get; set; } | ||
public string? RepositoryUrl { get; set; } | ||
public List<string>? Cookies { 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,17 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace BlueCatKoKo.Ui.Models; | ||
|
||
public class AppLogging | ||
{ | ||
[JsonProperty("LogLevel")] public LogLevel LogLevel { get; set; } | ||
} | ||
|
||
public class LogLevel | ||
{ | ||
[JsonProperty("Microsoft")] public string Microsoft { get; set; } | ||
|
||
[JsonProperty("Default")] public string Default { get; set; } | ||
|
||
[JsonProperty("System")] public string System { 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,12 @@ | ||
// YApi QuickType插件生成,具体参考文档:https://plugins.jetbrains.com/plugin/18847-yapi-quicktype/documentation | ||
|
||
using Newtonsoft.Json; | ||
|
||
namespace BlueCatKoKo.Ui.Models; | ||
|
||
public class AppSetting | ||
{ | ||
[JsonProperty("Logging")] public AppLogging AppLogging { get; set; } | ||
|
||
[JsonProperty("AppConfig")] public AppConfig AppConfig { get; set; } | ||
} |
Oops, something went wrong.