Initial Commit

This commit is contained in:
2026-05-25 10:29:38 +08:00
commit c42c9aea2a
64 changed files with 5919 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace PatchProbe.Engine.Contracts.ApiModels;
public sealed record EnrollmentRequest(
string EnrollmentKey,
string MachineName,
string DeviceFingerprint,
string PublicKeySpki);

View File

@@ -0,0 +1,5 @@
namespace PatchProbe.Engine.Contracts.ApiModels;
public sealed record EnrollmentResponse(
string DeviceId,
string Message);

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>