You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
9 lines
264 B
C#
9 lines
264 B
C#
namespace OneSwiss.Server.Models;
|
|
|
|
public class AccessGroup : DatabaseObject
|
|
{
|
|
public string Name { get; set; }
|
|
public bool IsBuiltIn { get; set; }
|
|
public List<ApplicationRole> Roles { get; set; }
|
|
public List<UsersGroup> UsersGroups { get; set; }
|
|
} |