14 lines
319 B
C#
14 lines
319 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SpotiParty.Web.Models;
|
|
|
|
public class User {
|
|
[Key]
|
|
public Guid UserId { get; init; } = Guid.CreateVersion7();
|
|
|
|
[MaxLength(255)]
|
|
public string DisplayName { get; init; }
|
|
|
|
[MaxLength(255)]
|
|
public string RefreshToken { get; set; }
|
|
} |