morrisjdev/FileContextCore

View on GitHub
FileContextCore/Infrastructure/Internal/IFileContextScopedOptions.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace FileContextCore.Infrastructure.Internal
{
    public interface IFileContextScopedOptions
    {
       string DatabaseName { get; }
       string Location { get; }
       string Password { get; }
       Type StoreManagerType { get; }
       Type SerializerType { get; }
       Type FileManagerType { get; }
    }
}