2025-09-09 13:35:16 +08:00
|
|
|
using System.Collections.ObjectModel;
|
2025-09-16 14:42:23 +08:00
|
|
|
using DMS.Application.Events;
|
2025-10-06 18:17:56 +08:00
|
|
|
using DMS.WPF.ItemViewModel;
|
2025-09-09 13:35:16 +08:00
|
|
|
|
|
|
|
|
namespace DMS.WPF.Interfaces;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 日志数据服务接口。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ILogDataService
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 处理日志变更事件。
|
|
|
|
|
/// </summary>
|
|
|
|
|
void OnNlogChanged(object sender, NlogChangedEventArgs e);
|
|
|
|
|
|
|
|
|
|
void LoadAllLog();
|
|
|
|
|
}
|