Newer
Older
using System;
using HaaSMiddleware.DomainObjects.ClusterInformation;
namespace HaaSMiddleware.ConnectionPool {
public class ConnectionInfo {
public object Connection { get; set; }
public DateTime LastUsed { get; set; }
public ClusterAuthenticationCredentials AuthCredentials { get; set; }
}
}