spell checker

This commit is contained in:
donlaci
2024-08-05 14:38:49 +02:00
parent ac5d9dbef2
commit 82cfa4cbfe
3 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ namespace ProjectsLauncherUI.Data
[JsonPropertyName("apps")]
public AppLaunchInfoListWrapper AppLaunchInfos { get; set; }
[JsonPropertyName("processid")]
[JsonPropertyName("processId")]
public int LauncherProcessID { get; set; }
}
}

View File

@@ -15,7 +15,7 @@ namespace ProjectsLauncherUI.Data
{
public struct AppLaunchInfoListWrapper
{
[JsonPropertyName("applaunchinfos")]
[JsonPropertyName("appLaunchInfos")]
public List<AppLaunchInfoWrapper> AppLaunchInfoList { get; set; }
}
}

View File

@@ -432,7 +432,7 @@ namespace ProjectsData
{
namespace NonLocalizable
{
const static wchar_t* AppLaunchInfoID = L"applaunchinfos";
const static wchar_t* AppLaunchInfoID = L"appLaunchInfos";
}
json::JsonObject ToJson(const std::vector<AppLaunchInfo>& data)
@@ -454,7 +454,7 @@ namespace ProjectsData
namespace NonLocalizable
{
const static wchar_t* AppsID = L"apps";
const static wchar_t* ProcessID = L"processid";
const static wchar_t* ProcessID = L"processId";
}
json::JsonObject ToJson(const AppLaunchData& data)