Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Common/Models/GobalModel.cs

16 lines
336 B
C#
Raw Normal View History

2022-10-18 09:01:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Models
{
public static class GobalModel
{
public static bool SqlLogEnable { get; set; } = true;
2022-10-28 14:25:59 +08:00
public static bool LoginCodeEnable { get; set; } = true;
2022-10-18 09:01:16 +08:00
}
}