//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.ResourceProvider.Core.Authentication
{
///
/// User account authentication information to be used by
///
public interface IUserAccount
{
///
/// The unique Id for the user
///
string UniqueId
{
get;
}
///
/// Returns true if user needs reauthentication
///
bool NeedsReauthentication
{
get;
}
}
}