Add project files.
This commit is contained in:
19
JSMR.Application/Circles/Queries/Search/CircleSearchItem.cs
Normal file
19
JSMR.Application/Circles/Queries/Search/CircleSearchItem.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace JSMR.Application.Circles.Queries.Search;
|
||||
|
||||
public record CircleSearchItem
|
||||
{
|
||||
public int CircleId { get; init; }
|
||||
public string Name { get; init; } = string.Empty;
|
||||
public string MakerId { get; init; } = string.Empty;
|
||||
public bool Blacklisted { get; init; }
|
||||
public bool Favorite { get; init; }
|
||||
public bool Spam { get; init; }
|
||||
public int Downloads { get; init; }
|
||||
public int Releases { get; init; }
|
||||
public int Pending { get; init; }
|
||||
public DateTime? FirstReleaseDate { get; init; }
|
||||
public DateTime? LatestReleaseDate { get; init; }
|
||||
public string? LatestProductId { get; init; }
|
||||
public bool? LatestVoiceWorkHasImage { get; init; }
|
||||
public DateTime? LatestVoiceWorkSalesDate { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user