namespace LanMountainDesktop.Launcher.Models; /// /// 隐私协议同意状态模型(带防篡改保护) /// public class PrivacyAgreementState { /// /// 用户是否同意隐私协议 /// public bool IsAgreed { get; set; } = false; /// /// 同意时间(UTC) /// public DateTime AgreedAtUtc { get; set; } /// /// 同意的协议版本 /// public string AgreementVersion { get; set; } = "1.0"; /// /// 用户标识(匿名) /// public string UserId { get; set; } = string.Empty; /// /// 设备标识 /// public string DeviceId { get; set; } = string.Empty; /// /// 数据完整性校验哈希(HMAC-SHA256) /// public string IntegrityHash { get; set; } = string.Empty; /// /// 用于生成哈希的随机盐值 /// public string Salt { get; set; } = string.Empty; }