summary refs log tree commit diff
path: root/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs
blob: 7d88ec81f9eb87c8411777101f6e048d2f48ca27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace SafeNSound.Sdk;

public class SafeNSoundAuthentication(SafeNSoundConfiguration config)
{
    public async Task<SafeNSoundAuthResult> Login(string username, string password)
    {
        
    }
    
    public async Task<SafeNSoundAuthResult> Register(string username, string password)
    {
        
    }
}

public class SafeNSoundAuthResult
{
    
}