WIP: move logic to Core project
This commit is contained in:
parent
54e04da524
commit
7a7cefe7b5
12 changed files with 267 additions and 200 deletions
8
MetaforceInstaller.Core/Models/DeviceInfo.cs
Normal file
8
MetaforceInstaller.Core/Models/DeviceInfo.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace MetaforceInstaller.Core.Models;
|
||||
|
||||
public record DeviceInfo(
|
||||
string SerialNumber,
|
||||
string State,
|
||||
string Model,
|
||||
string Name
|
||||
);
|
||||
8
MetaforceInstaller.Core/Models/InstallationRequest.cs
Normal file
8
MetaforceInstaller.Core/Models/InstallationRequest.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace MetaforceInstaller.Core.Models;
|
||||
|
||||
public class InstallationRequest
|
||||
{
|
||||
public string ApkPath { get; set; }
|
||||
public string ZipPath { get; set; }
|
||||
public string OutputPath { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue