namespace JSMR.Domain.Entities; public class Creator { public int CreatorId { get; set; } public required string Name { get; set; } public bool Favorite { get; set; } public bool Blacklisted { get; set; } }