aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.PPCConsole/Contracts/ILogsView.cs
blob: 00af7e87d19530b0c0cf9bdf3ef5791ba3260fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.FSE.Common;
using Tango.FSE.Common.Logging;
using Tango.Logging;

namespace Tango.FSE.PPCConsole.Contracts
{
    public interface ILogsView : IFSEView
    {
        void ScrollToLog(LogItemBase item);
        void ScrollToLogFile(RemoteLogFileModel<LogItemBase> logFile);
    }
}