Folder structure & files updated

This commit is contained in:
OlgunR
2026-03-17 16:17:52 +01:00
parent c7275ad966
commit 7271a92d32
38 changed files with 82 additions and 144 deletions

View File

@@ -1,5 +0,0 @@
<h3>AccessCodeInput</h3>
@code {
}

View File

@@ -0,0 +1,5 @@
<h3>AccessCodeForm</h3>
@code {
}

View File

@@ -0,0 +1,5 @@
<h3>TwoFactorForm</h3>
@code {
}

View File

@@ -1,5 +0,0 @@
<h3>ErrorBoundary</h3>
@code {
}

View File

@@ -0,0 +1,5 @@
<h3>NavHeader</h3>
@code {
}

View File

@@ -1,5 +0,0 @@
<h3>LoadingSpinner</h3>
@code {
}

View File

@@ -0,0 +1,5 @@
<h3>AlertMessage</h3>
@code {
}

View File

@@ -0,0 +1,5 @@
<h3>ErrorDisplay</h3>
@code {
}

View File

@@ -0,0 +1,5 @@
<h3>LoadingIndicator</h3>
@code {
}

View File

@@ -12,10 +12,4 @@
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.22" />
</ItemGroup>
<ItemGroup>
<Folder Include="Layout\" />
<Folder Include="wwwroot\css\" />
<Folder Include="wwwroot\js\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,5 @@
<h3>EnvelopeExpired</h3>
@code {
}

View File

@@ -1,6 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services
{
public class AuthApiService
public class AuthService
{
}
}

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services.Base
{
public class ApiResponse
{
}
}

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services.Base
{
public class ApiServiceBase
{
}
}

View File

@@ -1,6 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services
{
public class EnvelopeApiService
public class EnvelopeService
{
}
}

View File

@@ -1,6 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services
{
public interface IAuthApiService
public class HistoryService
{
}
}

View File

@@ -1,6 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services
{
public interface IEnvelopeApiService
public interface IAuthService
{
}
}

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services
{
public interface IEnvelopeService
{
}
}

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Services
{
public interface IHistoryService
{
}
}

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.State
{
public class AuthState
{
}
}

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.State
{
public class EnvelopeState
{
}
}

View File

@@ -1,8 +0,0 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@@ -1,8 +0,0 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}