10 lines
210 B
C#
10 lines
210 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApplicationLayer.Services.AuthServices.Common
|
|
{
|
|
public class AuthToken
|
|
{
|
|
[Required] public string Token { get; set; } = null!;
|
|
}
|
|
}
|