13 lines
235 B
C#
13 lines
235 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface ILogLevelType : IEntity
|
|
{
|
|
string DisplayName { get; set; }
|
|
|
|
IReadOnlyList<ILog> Log { get; }
|
|
}
|
|
}
|
|
|