20 lines
492 B
C#
20 lines
492 B
C#
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; }
|
||
|
||
}
|
||
}
|