Files
schengen-visa/ApplicationLayer/Services/AuthServices/Common/AuthToken.cs
2025-10-05 14:32:06 +03:00

8 lines
191 B
C#

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