Applications.razor for applicants

This commit is contained in:
2024-09-06 21:37:16 +03:00
parent 53d5758527
commit f90a0e7e82
13 changed files with 227 additions and 125 deletions

View File

@@ -1,4 +1,9 @@
namespace ApplicationLayer.Services.AuthServices.Common
using System.ComponentModel.DataAnnotations;
namespace ApplicationLayer.Services.AuthServices.Common
{
public record AuthToken(string Token);
public class AuthToken
{
[Required] public string Token { get; set; } = null!;
}
}