summaryrefslogtreecommitdiff
path: root/Models/UserAccount.cs
blob: 333138d09dcb07a9498da64210bba5ea0e33f8d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Identity;

namespace BackendPIA.Models {
    public class UserAccount : IdentityUser {
        [StringLength(64)]
        public string? SessionToken { get; set; }
        public DateTime? SessionTokenExpiryTime { get; set; }
        public ICollection<Ticket>? Tickets { get; set; }
    }
}