Added avalonia integration and remote proof of concept

This commit is contained in:
MaddoScientisto 2026-02-28 15:30:57 +01:00
commit 4a0973b681
23 changed files with 2043 additions and 6 deletions

View file

@ -0,0 +1,15 @@
using System.Text.Json.Serialization;
namespace Catalog.Communication.Models;
public sealed class UploadImageResponse
{
[JsonPropertyName("result")]
public bool Result { get; init; }
[JsonPropertyName("message")]
public string Message { get; init; } = string.Empty;
[JsonPropertyName("imgPath")]
public string ImgPath { get; init; } = string.Empty;
}