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
16
Catalog.Communication/Models/MediaFileResponse.cs
Normal file
16
Catalog.Communication/Models/MediaFileResponse.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System.Net;
|
||||
|
||||
namespace Catalog.Communication.Models;
|
||||
|
||||
public sealed class MediaFileResponse
|
||||
{
|
||||
public required HttpStatusCode StatusCode { get; init; }
|
||||
|
||||
public required byte[] Content { get; init; }
|
||||
|
||||
public string? ContentType { get; init; }
|
||||
|
||||
public string? FileName { get; init; }
|
||||
|
||||
public required IReadOnlyDictionary<string, IReadOnlyList<string>> Headers { get; init; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue