Added inital job entity and services. Added released works API integration.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace JSMR.Infrastructure.Integrations.DLSite.Models.NewWorks;
|
||||
|
||||
public record NewWorksApiResponse
|
||||
{
|
||||
[JsonPropertyName("meta")]
|
||||
public required NewWorksApiMeta Meta { get; init; }
|
||||
|
||||
[JsonPropertyName("data")]
|
||||
public required NewWorksApiData Data { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user