-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
59 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
HoubyStudio.LazyAdmin.DesktopApp/HoubyStudio.LazyAdmin.DesktopApp/Models/WebViewManager.cs
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
...min.DesktopApp/HoubyStudio.LazyAdmin.DesktopApp/PowerShell/Services/IPowerShellService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace HoubyStudio.LazyAdmin.DesktopApp.PowerShell.Services | ||
{ | ||
/// <summary> | ||
/// PowerShell service interface | ||
/// </summary> | ||
interface IPowerShellService | ||
{ | ||
|
||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...dmin.DesktopApp/HoubyStudio.LazyAdmin.DesktopApp/PowerShell/Services/PowerShellService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
| ||
namespace HoubyStudio.LazyAdmin.DesktopApp.PowerShell.Services | ||
{ | ||
/// <summary> | ||
/// PowerShell service creates and manages powershell instances, sends data to WebView and receives data from WebView. | ||
/// </summary> | ||
public class PowerShellService : IPowerShellService | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="PowerShellService"/> class. | ||
/// </summary> | ||
public PowerShellService() | ||
{ | ||
#region Members | ||
#endregion //Members | ||
|
||
#region Constructors | ||
#endregion //Constructors | ||
|
||
#region Public Methods | ||
#endregion //Public Methods | ||
|
||
#region Private Methods | ||
#endregion //Private Methods | ||
} | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
...dio.LazyAdmin.DesktopApp/HoubyStudio.LazyAdmin.DesktopApp/Web/Services/IWebViewService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using Microsoft.Web.WebView2.Wpf; | ||
|
||
namespace HoubyStudio.LazyAdmin.DesktopApp.Web.Services | ||
{ | ||
interface IWebViewService | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters