123456789101112131415161718192021222324 |
- namespace XRTool.Util
- {
-
-
-
- public class LanguageConf
- {
- public string priKey;
- public string message;
- public string audioPath;
-
-
-
- public string PriKey { get => priKey; set => priKey = value; }
-
-
-
- public string Message { get => message; set => message = value; }
-
-
-
- public string AudioPath { get => audioPath; set => audioPath = value; }
- }
- }
|