Added folder structure and files

This commit is contained in:
OlgunR
2026-03-17 12:36:14 +01:00
parent 590ab9bf02
commit bf8115259a
26 changed files with 146 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -12,4 +12,10 @@
<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,6 @@
namespace EnvelopeGenerator.ReceiverUI.Client.Models
{
public class AccessCodeModel
{
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace EnvelopeGenerator.ReceiverUI.Controllers
{
public class AuthController : Controller
{
public IActionResult Index()
{
return View();
}
}
}

View File

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