9 lines
191 B
C#
9 lines
191 B
C#
using System;
|
|
|
|
namespace Mirea.Api.Endpoint.Common.Interfaces;
|
|
|
|
public interface ISetupToken
|
|
{
|
|
bool MatchToken(ReadOnlySpan<byte> token);
|
|
void SetToken(ReadOnlySpan<byte> token);
|
|
} |