12 lines
317 B
C#
12 lines
317 B
C#
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!;
|
|
} |