namespace JSMR.Application.Creators.Queries.Search.Contracts; public record CreatorSearchItem { public int CreatorId { get; set; } public required string Name { get; set; } public bool Favorite { get; set; } public bool Blacklisted { get; set; } public int VoiceWorkCount { get; set; } }