Skip to content

Commit

Permalink
WIP code reorganization #8
Browse files Browse the repository at this point in the history
  • Loading branch information
megastary committed Aug 26, 2021
1 parent 85f93c7 commit f65dcd7
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
Binary file added CodeOVerview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HoubyStudio.LazyAdmin.DesktopApp.Models
{
class Message
{
private Guid _token;

public Guid Token
{
set => _token = value;
get => _token;
}

public Message()
{
// PowerShell does not send token to javascript
}

public Message(Guid token)
{
// Javascript sends token to validate source
Token = token;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HoubyStudio.LazyAdmin.DesktopApp.Models
{
class PowerShellManager
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HoubyStudio.LazyAdmin.DesktopApp.Models
{
class WebViewManager
{
}
}

0 comments on commit f65dcd7

Please sign in to comment.