using System; using System.Collections.Generic; namespace Kreta.DataAccess.Interfaces { public interface ILogEventType : IEntity { bool? Deletable { get; set; } string DisplayName { get; set; } IReadOnlyList Log { get; } } }