kreta/Kreta.DataAccessInterfaceGenerated/IDictionaryType.cs
2024-03-13 00:33:46 +01:00

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; }
}
}