Added Blazor projects. Minor API/core updates.
All checks were successful
ci / build-test (push) Successful in 1m35s
ci / publish-image (push) Has been skipped

This commit is contained in:
2025-11-07 22:18:04 -05:00
parent 4020a01682
commit 840bec72d2
77 changed files with 60692 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ public class VoiceWorkSearchCriteria
public string? Keywords { get; init; }
public string? Title { get; init; }
public string? Circle { get; init; }
public VoiceWorkStatus? Status { get; init; }
public SaleStatus? SaleStatus { get; init; }
public CircleStatus? CircleStatus { get; init; }
public TagStatus? TagStatus { get; init; }
@@ -17,6 +18,8 @@ public class VoiceWorkSearchCriteria
public int[] CreatorIds { get; init; } = [];
public bool IncludeAllCreators { get; init; }
public Locale Locale { get; init; } = Locale.Japanese;
public DateOnly? ScheduledReleaseDateStart { get; init; }
public DateOnly? ScheduledReleaseDateEnd { get; init; }
public DateOnly? ReleaseDateStart { get; init; }
public DateOnly? ReleaseDateEnd { get; init; }
public AgeRating[] AgeRatings { get; init; } = [];

View File

@@ -2,6 +2,7 @@
public enum VoiceWorkSortField
{
ScheduledReleaseDate,
ReleaseDate,
Downloads,
WishlistCount,