Implemented Login workflow

This commit is contained in:
2025-11-30 15:19:49 +01:00
parent 2b5b0c1067
commit 825bd80ef0
22 changed files with 330 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
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; }
}