16 lines
359 B
C#
16 lines
359 B
C#
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; }
|
|
}
|
|
}
|
|
|