Add project files.

This commit is contained in:
2023-08-07 09:18:08 +02:00
parent 7542685963
commit 1f39c39d96
10 changed files with 374 additions and 0 deletions

8
DIDemoLib/IMessages.cs Normal file
View File

@ -0,0 +1,8 @@
namespace DIDemoLib
{
public interface IMessages
{
string SayGoodBye();
string SayHello();
}
}