Files
Alma/src/Alma.Abstraction/Services/IOsInformation.cs

7 lines
153 B
C#

namespace Alma.Services;
public interface IOsInformation
{
Task<string> GetOsIdentifierAsync();
Task<bool> IsOnPlatformAsync(string platform);
}