mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-05 05:51:27 +02:00
13 lines
271 B
C#
Executable File
13 lines
271 B
C#
Executable File
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace DotBased.AspNet.Authority;
|
|
|
|
public class AuthorityBuilder
|
|
{
|
|
public AuthorityBuilder(IServiceCollection services)
|
|
{
|
|
Services = services;
|
|
}
|
|
|
|
public IServiceCollection Services { get; }
|
|
} |