10 lines
311 B
C#
10 lines
311 B
C#
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; }
|
|
} |