using System; namespace EnVisage.MongoDbMigration.Logic { public interface IMigrationExecuterBase { Version Version { get; } void Execute(); } }