Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/AuthServices/Common/AuthToken.cs

10 lines
210 B
C#

using System.ComponentModel.DataAnnotations;
namespace ApplicationLayer.Services.AuthServices.Common
{
public class AuthToken
{
[Required] public string Token { get; set; } = null!;
}
}