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