1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-10-22 05:23:38 +02:00
Files
Minecraft-Phantom-Panel/Server/Phantom.Server.Database/Entities/AgentEntity.cs
2022-10-07 11:33:57 +02:00

22 lines
541 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Phantom.Common.Data;
namespace Phantom.Server.Database.Entities;
[Table("Agents", Schema = "agents")]
public sealed class AgentEntity {
[Key]
public Guid AgentGuid { get; set; }
public string Name { get; set; }
public ushort Version { get; set; }
public ushort MaxInstances { get; set; }
public RamAllocationUnits MaxMemory { get; set; }
internal AgentEntity(Guid agentGuid) {
AgentGuid = agentGuid;
Name = null!;
}
}