mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 05:34:33 +00:00
19 lines
465 B
C#
19 lines
465 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
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; }
|
|
}
|
|
} |