.vscode
JavaScript
Server
Server.Tests
Shared
DataModels
KeyboardMouse
Models
Stateless
IAggregateInputReader.cs
IAppSettingsController.cs
IAppSettingsRepository.cs
IFileService.cs
ILastScanController.cs
ILastScanService.cs
ILinuxGroupManager.cs
IMethodName.cs
IPostService.cs
ISerialService.cs
IWorkingDirectory.cs
Notification.cs
WorkingDirectory.cs
Barcode.Host.Shared.csproj
.editorconfig
.gitignore
.prettierignore
Barcode-Host.sln
Barcode-Host.yml
azure-pipelines-server.yml
package-lock.json
package.json
15 lines
332 B
C#
15 lines
332 B
C#
using Barcode.Host.Shared.DataModels;
|
|
using Barcode.Host.Shared.KeyboardMouse;
|
|
|
|
namespace Barcode.Host.Shared.Models.Stateless;
|
|
|
|
public interface ILastScanService
|
|
{
|
|
|
|
void Clear();
|
|
int GetCount();
|
|
Result<string> GetScan();
|
|
void Add(EventCode eventCode, char @char);
|
|
List<(EventCode, char)> IncludeEventCodes();
|
|
|
|
} |