mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-11-27 10:06:53 -08:00
13 lines
275 B
C#
13 lines
275 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace sodoff.Model;
|
|
public class Session {
|
|
[Key]
|
|
public string ApiToken { get; set; } = null!;
|
|
|
|
[Required]
|
|
public string UserId { get; set; } = null!;
|
|
|
|
public virtual User User { get; set; } = null!;
|
|
}
|