13 lines
426 B
C#
13 lines
426 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ImmichToSlideshow.Models.Open.Api.Band.Comments;
|
|
|
|
public record Root(
|
|
[property: JsonPropertyName("result_code")] int ResultCode,
|
|
[property: JsonPropertyName("result_data")] ResultData ResultData
|
|
);
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(Root))]
|
|
public partial class CommentsRootSourceGenerationContext : JsonSerializerContext {
|
|
} |