2022-12-02 15:03:34 +01:00

16 lines
450 B
C#

using Connected.Entities.Storage;
namespace Connected.Data.Schema.Sql;
internal sealed class SchemaStorageArgs : StorageContextArgs, ISchemaSynchronizationContext
{
public SchemaStorageArgs(IStorageOperation operation, Type connectionType, string connectionString) : base(operation)
{
ConnectionType = connectionType;
ConnectionString = connectionString;
}
public Type ConnectionType { get; }
public string ConnectionString { get; }
}