Files
isn/src/appled/Data/Account/ExternalProvider.cs
Paul Schneider 5de53a3cba rebrand
2021-06-27 01:53:00 +01:00

12 lines
361 B
C#

// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace nuget_host.Data
{
public class ExternalProvider
{
public string DisplayName { get; set; }
public string AuthenticationScheme { get; set; }
}
}