提交了仪表的模型
This commit is contained in:
20
CapMachine.Wpf/Services/ILogService.cs
Normal file
20
CapMachine.Wpf/Services/ILogService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// NLog服务
|
||||
/// </summary>
|
||||
public interface ILogService
|
||||
{
|
||||
void Debug(string msg);
|
||||
void Error(string msg);
|
||||
void Fatal(string msg);
|
||||
void Info(string msg);
|
||||
void Warn(string msg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user