infrastructure restructure

This commit is contained in:
2026-02-05 19:33:52 +01:00
parent 82d44c230f
commit 50e87335f4
5 changed files with 16 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace AipsCore.Infrastructure.Persistence.User;
public class User
{
[Key]
public Guid Id { get; set; }
[Required] [MaxLength(255)] public string Username { get; set; } = null!;
[Required] [MaxLength(255)] public string Email { get; set; } = null!;
}