mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
15 lines
324 B
C#
15 lines
324 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Phantom.Server.Database.Entities;
|
|
|
|
[Table("Permissions", Schema = "identity")]
|
|
public sealed class PermissionEntity {
|
|
[Key]
|
|
public string Id { get; set; }
|
|
|
|
public PermissionEntity(string id) {
|
|
Id = id;
|
|
}
|
|
}
|