10 lines
235 B
C#
10 lines
235 B
C#
namespace Wino.Core.Domain.Models.Requests
|
|
{
|
|
// Used to pass messages from the webview to the app.
|
|
public class WebViewMessage
|
|
{
|
|
public string type { get; set; }
|
|
public string value { get; set; }
|
|
}
|
|
}
|