aspnetcore/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationDescription.cs

9 lines
207 B
C#

using System.Collections.Generic;
namespace Microsoft.AspNet.HttpFeature.Security
{
public interface IAuthenticationDescription
{
IDictionary<string, object> Properties { get; set; }
}
}