mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 13:44:34 +00:00
Enable the possibility to post data to external Url's with the BrowserWindow.LoadURL function. The post data is provided through LoadURLOptions
18 lines
404 B
C#
18 lines
404 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class Blob : IPostData
|
|
{
|
|
/// <summary>
|
|
/// The object represents a Blob
|
|
/// </summary>
|
|
public string Type { get; } = "blob";
|
|
|
|
/// <summary>
|
|
/// The UUID of the Blob being uploaded
|
|
/// </summary>
|
|
public string BlobUUID { get; set; }
|
|
}
|
|
} |