Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
172 changed files with 5195 additions and 58 deletions
Showing only changes of commit 3c9694de08 - Show all commits
.env
.gitea/workflows
ApiDto
Application
Application.csproj
Common
Cqrs
DependencyInjection.cs
Interfaces/DbContexts
Backend.sln
Domain/Schedule
Endpoint
Persistence
Security

@ -0,0 +1,8 @@
namespace Mirea.Api.Security.Common.Dto.Requests;
public class TokenRequest
{
public required string Fingerprint { get; set; }
public required string UserAgent { get; set; }
public required string Ip { get; set; }
}