16 lines
336 B
C#
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;
|
|
}
|
|
}
|