17 lines
386 B
C#
17 lines
386 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AuthorBuddy.Web.Data;
|
|
|
|
[Table("Users")]
|
|
public class UserEntity
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
|
|
[Required]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public bool IsCurrent { get; set; }
|
|
}
|