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
177 changed files with 5321 additions and 58 deletions
Showing only changes of commit b25be758ad - Show all commits
.env
.gitea/workflows
ApiDto
Application
Application.csproj
Common
Cqrs
DependencyInjection.cs
Interfaces
Backend.sln
Domain/Schedule
Endpoint
Persistence
Security

@@ -0,0 +1,13 @@
using System;
namespace Mirea.Api.Security.Common.Domain;
public class AuthToken
{
public required string RefreshToken { get; set; }
public required string UserAgent { get; set; }
public required string Ip { get; set; }
public required string UserId { get; set; }
public required string AccessToken { get; set; }
public DateTime CreatedAt { get; set; }
}