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
284 changed files with 14964 additions and 99 deletions
Showing only changes of commit dcdd43469b - Show all commits

View File

@ -0,0 +1,7 @@
namespace Mirea.Api.Security.Common.Domain.OAuth2;
public class OAuthPayload
{
public required OAuthProvider Provider { get; set; }
public required string Callback { get; set; }
}