Skip to content
Snippets Groups Projects
ConnectionInfo.cs 306 B
Newer Older
  • Learn to ignore specific revisions
  • Vaclav Svaton's avatar
    Vaclav Svaton committed
    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; }
    	}
    }