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

14 lines
273 B
C#

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