Files
T-DAS/Epost.DAL/Enum/SqlLogType.cs
2023-01-13 15:30:20 +08:00

21 lines
314 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class SqlLogType
{
public enum sqlLogType
{
DEVICE=1,
INFO=2,
SQLINFO=3
}
}
}