mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
15 lines
323 B
C#
15 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.Auth;
|
|
|
|
public partial class Accesslevel
|
|
{
|
|
public uint Level { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Prefix { get; set; }
|
|
|
|
public virtual ICollection<Account> Account { get; set; } = new List<Account>();
|
|
}
|