summary refs log tree commit diff
path: root/testFrontend/SafeNSound.Sdk
diff options
context:
space:
mode:
Diffstat (limited to 'testFrontend/SafeNSound.Sdk')
-rw-r--r--testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj16
-rw-r--r--testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs14
-rw-r--r--testFrontend/SafeNSound.Sdk/SafeNSoundClient.cs6
-rw-r--r--testFrontend/SafeNSound.Sdk/SafeNSoundConfiguration.cs6
4 files changed, 42 insertions, 0 deletions
diff --git a/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj b/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj
new file mode 100644

index 0000000..7338078 --- /dev/null +++ b/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj
@@ -0,0 +1,16 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>net9.0</TargetFramework> + <LangVersion>preview</LangVersion> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <ItemGroup> + <Folder Include="Clients\AdminClient\" /> + <Folder Include="Clients\MonitorClient\" /> + <Folder Include="Clients\UserClient\" /> + </ItemGroup> + +</Project> diff --git a/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs b/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs new file mode 100644
index 0000000..23c1445 --- /dev/null +++ b/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs
@@ -0,0 +1,14 @@ +namespace SafeNSound.Sdk; + +public class SafeNSoundAuthentication(SafeNSoundConfiguration) +{ + public async Task<SafeNSoundAuthResult> Login(string username, string password) + { + + } + + public async Task<SafeNSoundAuthResult> Register(string username, string password) + { + + } +} \ No newline at end of file diff --git a/testFrontend/SafeNSound.Sdk/SafeNSoundClient.cs b/testFrontend/SafeNSound.Sdk/SafeNSoundClient.cs new file mode 100644
index 0000000..7a7023c --- /dev/null +++ b/testFrontend/SafeNSound.Sdk/SafeNSoundClient.cs
@@ -0,0 +1,6 @@ +namespace SafeNSound.Sdk; + +public class SafeNSoundClient +{ + +} \ No newline at end of file diff --git a/testFrontend/SafeNSound.Sdk/SafeNSoundConfiguration.cs b/testFrontend/SafeNSound.Sdk/SafeNSoundConfiguration.cs new file mode 100644
index 0000000..d479825 --- /dev/null +++ b/testFrontend/SafeNSound.Sdk/SafeNSoundConfiguration.cs
@@ -0,0 +1,6 @@ +namespace SafeNSound.Sdk; + +public class SafeNSoundConfiguration +{ + +} \ No newline at end of file