mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-13 12:44:15 +01:00
14 lines
293 B
C#
14 lines
293 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MareSynchronosShared.Models
|
|
{
|
|
public class Auth
|
|
{
|
|
[Key]
|
|
[MaxLength(64)]
|
|
public string HashedKey { get; set; }
|
|
|
|
public string UserUID { get; set; }
|
|
public User User { get; set; }
|
|
}
|
|
}
|