ln.modular/IModularService.cs

18 lines
353 B
C#
Raw Normal View History

2019-04-23 21:54:07 +02:00
// /**
2019-04-24 07:13:50 +02:00
// * File: IModularService.cs
2019-04-23 21:54:07 +02:00
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.modular
{
2019-04-24 07:13:50 +02:00
public interface IModularService
2019-04-23 21:54:07 +02:00
{
2019-04-24 07:13:50 +02:00
2019-04-23 21:54:07 +02:00
}
}