MConfigParams.cs

24 lines | 591 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using RW_Tool.Core.Abstract;

namespace Tools.ConfigurationTool.ConfigMultiple.Custom
{
    //Базовые параметры конфига
    public class MConfigParams<T1,T2> 
        : MConfigParams
    {
        public ITransformator<T1, T2> Transformator { set; get; }


        public MConfigParams(string ConfigDirectory, ITransformator<T1, T2> Transformator) : base(ConfigDirectory)
        {
            this.Transformator = Transformator;
        }
    }
}