Added Files

This commit is contained in:
2025-10-27 18:48:23 -04:00
commit ab916dc82a
89 changed files with 7575 additions and 0 deletions

9
PepLib.Core/Machine.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace PepLib
{
public class Machine
{
public int Id { get; set; }
public string Name { get; set; }
}
}