mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 18:37:22 +01:00
13 lines
273 B
C#
13 lines
273 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MareSynchronosShared.Models;
|
|
|
|
public class Alias
|
|
{
|
|
[Key]
|
|
[MaxLength(10)]
|
|
[Required]
|
|
public string AliasUID { get; set; }
|
|
public User User { get; set; }
|
|
public string UserUID { get; set; }
|
|
}
|