public class Author
{
public Author()
{
Followers = new List<Author>();
}
public int Id { get; set; }
[Required]
[MaxLength(100)]
public string Name { get; set; }
public virtual List<Author> Followers { get; set; }
}