mirror of
https://dev.azure.com/tstanciu94/NetworkResurrector/_git/NetworkResurrector
synced 2025-06-21 19:17:04 +03:00
12 lines
246 B
C#
12 lines
246 B
C#
using System;
|
|
|
|
namespace NetworkResurrector.Server.Domain.Models
|
|
{
|
|
public class SecurityToken
|
|
{
|
|
public int UserId { get; set; }
|
|
public string Token { get; set; }
|
|
public DateTime ValidUntil { get; set; }
|
|
}
|
|
}
|