mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-21 23:42:45 +01:00
15 lines
390 B
C#
15 lines
390 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Phantom.Controller.Database.Entities;
|
|
|
|
[Table("UserAgentAccess", Schema = "identity")]
|
|
public sealed class UserAgentAccessEntity {
|
|
public Guid UserGuid { get; init; }
|
|
public Guid AgentGuid { get; init; }
|
|
|
|
public UserAgentAccessEntity(Guid userGuid, Guid agentGuid) {
|
|
UserGuid = userGuid;
|
|
AgentGuid = agentGuid;
|
|
}
|
|
}
|