* 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>
13 lines
249 B
C#
13 lines
249 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Wino.Core.Domain.Models.Reader;
|
|
|
|
public class ImageInfo
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public string Data { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
}
|