10 lines
316 B
C#
10 lines
316 B
C#
namespace JSMR.Application.Creators.Queries.Search.Contracts;
|
|
|
|
public record CreatorSearchItem
|
|
{
|
|
public int CreatorId { get; init; }
|
|
public required string Name { get; init; }
|
|
public bool Favorite { get; init; }
|
|
public bool Blacklisted { get; init; }
|
|
public int VoiceWorkCount { get; init; }
|
|
} |