using System;
using System.Collections.Generic;

namespace Kreta.DataAccess.Interfaces
{
    public interface IIntezmenyConfig : IEntity
    {
        string Ertek { get; set; }

        int ConfigTipusId { get; set; }
        IConfigTipus ConfigTipus { get; set; }
        int IntezmenyId { get; set; }
        IIntezmeny Intezmeny { get; set; }
    }
}