16 lines
315 B
C#
16 lines
315 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RazorPagesMovie.Models;
|
|
|
|
public class AdminUser
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
[Required]
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
}
|