32 lines
815 B
C#
32 lines
815 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Common.Models.DBDomain
|
|
{
|
|
[Index(nameof(Email))]
|
|
public class User : BaseEntity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string Email { get; set; }
|
|
public List<UserNovel> WatchedNovels { get; set; }
|
|
|
|
protected bool Equals(User other)
|
|
{
|
|
return Id == other.Id;
|
|
}
|
|
|
|
public override bool Equals(object? obj)
|
|
{
|
|
if (ReferenceEquals(null, obj)) return false;
|
|
if (ReferenceEquals(this, obj)) return true;
|
|
if (obj.GetType() != this.GetType()) return false;
|
|
return Equals((User) obj);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return Id;
|
|
}
|
|
}
|
|
} |