2024-07-16 14:56:46 +02:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
2024-07-21 05:45:02 +02:00
|
|
|
|
namespace Wino.Domain.Models.Reader
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used to pass messages from the webview to the app.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class WebViewMessage
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("type")]
|
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("value")]
|
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|