Just json to c#

This commit is contained in:
2025-08-22 13:00:01 -07:00
parent 895dab9413
commit 47fc079e0a
66 changed files with 2246 additions and 17 deletions

View File

@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace ImmichToSlideshow.Models.Open.Api.Band.Post;
public record Video(
[property: JsonPropertyName("175284037")] P175284037 P175284037
);
[JsonSourceGenerationOptions(WriteIndented = true)]
[JsonSerializable(typeof(Video))]
public partial class PostVideoSourceGenerationContext : JsonSerializerContext {
}