HKC_Blazor/MasaBlazorApp3/Pojo/Config/SettingConfig.cs

20 lines
492 B
C#
Raw Normal View History

2025-04-18 11:01:56 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.Pojo.Config
{
public class SettingConfig
{
public string machineId { get; set; }
public string storage { get; set; }
public int loginMode { get; set; }
public bool opFirst { get; set; }
//自动退出登录时间,单位秒0不自动退出
public int autoOutLog { get; set; }
}
}