22 lines
580 B
C#
22 lines
580 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IDictionaryType : IEntity
|
|
{
|
|
string CodeName { get; set; }
|
|
string Description { get; set; }
|
|
bool IsColorEditable { get; set; }
|
|
bool IsCustomItemAllowed { get; set; }
|
|
string Name { get; set; }
|
|
|
|
int IntezmenyId { get; set; }
|
|
IIntezmeny Intezmeny { get; set; }
|
|
int TanevId { get; set; }
|
|
ITanev Tanev { get; set; }
|
|
|
|
IReadOnlyList<IDictionaryItemBase> DictionaryItemBase { get; }
|
|
}
|
|
}
|
|
|