I'm just wondering what is your's naming convention for Entities with less information. As example I have User class looking like this:
public class User : BaseEntity
{
public string Nickname { get; set; }
public string Password { get; set; }
public string Email { get; set; }
public UserRole Role { get; set; }
public bool IsBanned { get; set; }
}
Now, for security reasons I need to create class containing only Nickname and Email. And I'm wondering if there are any widely accepted convention for naming this kind of classes.