17 lines
381 B
Plaintext
17 lines
381 B
Plaintext
using DbAPI.Connections;
|
|
using DTS.Common.Interface.Database;
|
|
using System;
|
|
|
|
namespace DbAPIUI.Connections
|
|
{
|
|
public class LoggedInUser
|
|
{
|
|
public Tuple<IUserDbRecord, IConnectionDetails> Details { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Details.Item2}\\{Details.Item1.DisplayName}";
|
|
}
|
|
}
|
|
}
|