using StructureHelperCommon.Models; using System; using System.Collections.Generic; namespace StructureHelperCommon.Infrastructures.Interfaces { public interface IDictionaryConvertStrategy : IConvertStrategy where T : ISaveable where V : ISaveable { IConvertStrategy ConvertStrategy { get; set; } } }