| 123456789101112131415161718192021222324252627 |
- using RackPeek.Domain.Resources.Models;
- namespace RackPeek.Domain.Resources.SystemResources;
- public class SystemResource : Resource
- {
- public const string KindLabel = "System";
- public static readonly string[] ValidSystemTypes =
- [
- "baremetal",
- "hypervisor",
- "vm",
- "container",
- "embedded",
- "cloud",
- "other"
- ];
- public string? Type { get; set; }
- public string? Os { get; set; }
- public int? Cores { get; set; }
- public int? Ram { get; set; }
- public List<Drive>? Drives { get; set; }
- public string? RunsOn { get; set; }
- }
|