mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-21 21:50:12 +08:00
22 lines
647 B
C#
22 lines
647 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BetterGenshinImpact.Genshin.Settings;
|
|
|
|
public sealed class MainJson
|
|
{
|
|
[JsonPropertyName("deviceLanguageType")]
|
|
public int DeviceLanguageType { get; set; }
|
|
|
|
[JsonPropertyName("deviceVoiceLanguageType")]
|
|
public int DeviceVoiceLanguageType { get; set; }
|
|
|
|
[JsonPropertyName("inputData")]
|
|
public string? InputData { get; set; }
|
|
|
|
[JsonPropertyName("_overrideControllerMapKeyList")]
|
|
public string[]? OverrideControllerMapKeyList { get; set; }
|
|
|
|
[JsonPropertyName("_overrideControllerMapValueList")]
|
|
public string[]? OverrideControllerMapValueList { get; set; }
|
|
}
|