* Added logic to replace embedded images with linked resources * Added alt text for images and replaced NewtonSoft with Text.Json * Fix draft mime preparation * Fix crashes for signatures without images. --------- Co-authored-by: Burak Kaan Köse <bkaankose@outlook.com>
17 lines
382 B
C#
17 lines
382 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Wino.Core.Domain.Models.Reader
|
|
{
|
|
/// <summary>
|
|
/// Used to pass messages from the webview to the app.
|
|
/// </summary>
|
|
public class WebViewMessage
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public string Value { get; set; }
|
|
}
|
|
}
|