Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Common/Models/GobalModel.cs
2022-10-28 14:25:59 +08:00

16 lines
336 B
C#

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;
public static bool LoginCodeEnable { get; set; } = true;
}
}