mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-05-16 07:17:54 +02:00
10 lines
346 B
C#
10 lines
346 B
C#
using DotBased.AspNet.Authority.Models.Data.Auth;
|
|
|
|
namespace DotBased.AspNet.Authority.Models.Data.System;
|
|
|
|
public class AboutModel
|
|
{
|
|
public string Name { get; set; } = "Authority.Server";
|
|
public List<AuthenticationType> AuthenticationTypes { get; set; } = [];
|
|
public List<AuthenticationSessionType> SessionTypes { get; set; } = [];
|
|
} |