Initial commit

This commit is contained in:
Fabian Stamm
2018-06-22 09:22:47 +02:00
commit 724140d43e
100 changed files with 3095 additions and 0 deletions

20
LaOlaWelle/Message.cs Normal file
View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LaOlaWelle
{
class Message
{
public string Valid { get { return "valid"; } }
public int ID { get; set; }
public state State { get; set; }
}
enum state
{
close, open
}
}