Files
Govor/Govor.Core/Models/Admin.cs
T
Artemy ce013eae49 Registration rework
+ InvitesRepository
+ AdminsRepository
+ rework jwt
2025-06-24 14:27:08 +07:00

11 lines
190 B
C#

using System.ComponentModel.DataAnnotations;
namespace Govor.Core.Models;
public class Admin
{
[Key]
public Guid UserId { get; set; }
public User User { get; set; } = null!;
}