12 lines
281 B
C#
12 lines
281 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace JSMR.Infrastructure.Integrations.Chobit.Models;
|
|
|
|
public record ChobitResult
|
|
{
|
|
[JsonPropertyName("count")]
|
|
public int Count { get; set; }
|
|
|
|
[JsonPropertyName("works")]
|
|
public ChobitWork[] Works { get; set; } = [];
|
|
} |