namespace ElectronNET.API.Entities { /// /// /// public class EnableNetworkEmulationOptions { /// /// Whether to emulate network outage. Defaults to false. /// public bool Offline { get; set; } = false; /// /// RTT in ms. Defaults to 0 which will disable latency throttling. /// public int Latency { get; set; } /// /// Download rate in Bps. Defaults to 0 which will disable download throttling. /// public int DownloadThroughput { get; set; } /// /// Upload rate in Bps. Defaults to 0 which will disable upload throttling. /// public int UploadThroughput { get; set; } } }