mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-16 21:26:58 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
17
src/ElectronNET.API/API/Entities/OnDidNavigateInfo.cs
Normal file
17
src/ElectronNET.API/API/Entities/OnDidNavigateInfo.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace ElectronNET.API.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 'OnDidNavigate' event details.
|
||||
/// </summary>
|
||||
public class OnDidNavigateInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Navigated URL.
|
||||
/// </summary>
|
||||
public string Url { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// HTTP response code.
|
||||
/// </summary>
|
||||
public int HttpResponseCode { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user