mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-09 23:44:20 +01:00
10 lines
260 B
C#
Executable File
10 lines
260 B
C#
Executable File
namespace SharpRSS.API.Models
|
|
{
|
|
internal class AuthorizationSet
|
|
{
|
|
public DbSession Session { get; set; }
|
|
public DbUser User { get; set; }
|
|
public DbGroup Group { get; set; }
|
|
public bool AdminRequired { get; set; }
|
|
}
|
|
} |