mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 21:23:48 +00:00
15 lines
387 B
C#
15 lines
387 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
public sealed class DesktopCapturerSource
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public NativeImage Thumbnail { get; set; }
|
|
|
|
[JsonProperty("display_id")]
|
|
public string DisplayId { get; set; }
|
|
public NativeImage AppIcon { get; set; }
|
|
}
|
|
} |