Added avalonia integration and remote proof of concept
This commit is contained in:
parent
775080a178
commit
4a0973b681
23 changed files with 2043 additions and 6 deletions
18
Catalog.Communication/Models/UploadFileResponse.cs
Normal file
18
Catalog.Communication/Models/UploadFileResponse.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Catalog.Communication.Models;
|
||||
|
||||
public sealed class UploadFileResponse
|
||||
{
|
||||
[JsonPropertyName("result")]
|
||||
public bool Result { get; init; }
|
||||
|
||||
[JsonPropertyName("message")]
|
||||
public string Message { get; init; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("fileName")]
|
||||
public string FileName { get; init; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("fileNameLink")]
|
||||
public string FileNameLink { get; init; } = string.Empty;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue