7 lines
153 B
C#
7 lines
153 B
C#
namespace Alma.Services;
|
|
|
|
public interface IOsInformation
|
|
{
|
|
Task<string> GetOsIdentifierAsync();
|
|
Task<bool> IsOnPlatformAsync(string platform);
|
|
} |