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; }
|
|
} |