namespace DbAPI.SPCaching
{
///
/// just a helper class for caching what version of stored procedures to use
/// holds what stored procedure version to use given a client version and a db version
/// once this has been determined we don't need to determine it again ... usually
///
public class SPCache
{
///
/// application or client version
///
public int ClientVersion { get; set; }
///
/// database version
///
public int DbVersion { get; set; }
///
/// version of stored procedure to use
///
public int StoredProcedureVersion { get; set; }
}
}