Hold include uid setting

This commit is contained in:
2022-11-27 16:38:24 +08:00
parent ba4837f1f8
commit 74ddb428ee
6 changed files with 36 additions and 4 deletions

View File

@@ -226,5 +226,17 @@ namespace GrasscutterTools.Properties {
this["BannersJsonPath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool IsIncludeUID {
get {
return ((bool)(this["IsIncludeUID"]));
}
set {
this["IsIncludeUID"] = value;
}
}
}
}