kreta/Kreta.WebApi/Naplo/Kreta.Naplo.Domain/IService.cs
2024-03-13 00:33:46 +01:00

13 lines
259 B
C#

namespace Kreta.Naplo.Domain
{
/// <summary>
/// Service interface
/// </summary>
public interface IService
{
/// <summary>
/// Service context
/// </summary>
ServiceContext Context { get; set; }
}
}