mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +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; }
|
|
} |