using System.Runtime.Versioning; namespace ElectronNET.API.Entities { /// /// SharingItem for MenuItem role 'shareMenu' (macOS). /// /// Up-to-date with Electron API 39.2 [SupportedOSPlatform("macos")] public class SharingItem { /// /// An array of text to share. /// public string[] Texts { get; set; } /// /// An array of files to share. /// public string[] FilePaths { get; set; } /// /// An array of URLs to share. /// public string[] Urls { get; set; } } }