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
171 changed files with 5187 additions and 58 deletions
Showing only changes of commit e3db6b73e0 - 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,9 @@
using System;
namespace Mirea.Api.Security.Common.Dto.Responses;
public class PreAuthTokenResponse
{
public required string Token { get; set; }
public DateTime ExpiresIn { get; set; }
}