Initial Commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record Computer() : GenericInventoryItem
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record Cpu() : GenericInventoryItem
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record GenericInventoryItem()
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public string? Description { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record Gpu() : GenericInventoryItem
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record Router() : GenericInventoryItem
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record StorageDrive() : GenericInventoryItem
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace WyvernInventory.Core.Models;
|
||||
|
||||
public record Switch() : GenericInventoryItem
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user