You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
547 B
21 lines
547 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Common.Language
|
|
{
|
|
public class UserPreferences
|
|
{
|
|
public string Language { get; set; } = "zh";
|
|
|
|
/// <summary>
|
|
/// 设备唯一标识(UUID V4,卸载重装保持不变)。
|
|
/// 用于 AI 客服 JSBridge 的 sid 参数。
|
|
/// </summary>
|
|
public string DeviceId { get; set; } = string.Empty;
|
|
|
|
// 可扩展其他设置:Theme, WindowSize 等
|
|
}
|
|
}
|
|
|