1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-17 12:42:51 +02:00
Minecraft-Phantom-Panel/Server/Phantom.Server.Database/Entities/AgentEntity.cs

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!;
}
}