Initial commit
This commit is contained in:
7
DPGetDataContract/DPGetDataContract.csproj
Normal file
7
DPGetDataContract/DPGetDataContract.csproj
Normal file
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
12
DPGetDataContract/EDataType.cs
Normal file
12
DPGetDataContract/EDataType.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace DPGetDataContract
|
||||
{
|
||||
public enum EDataType {
|
||||
LEERPHASE = 0, // 004
|
||||
BEFÜLLPHASE = 1, // 000
|
||||
BERUHUNGSZEIT = 2, // 001
|
||||
PRÜFUNGSPHASE = 3, // 002
|
||||
ENDEPRÜFUNGMARKER = 4 // 003
|
||||
}
|
||||
}
|
||||
12
DPGetDataContract/GetDataStructure.cs
Normal file
12
DPGetDataContract/GetDataStructure.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace DPGetDataContract
|
||||
{
|
||||
public class GetDataStructure
|
||||
{
|
||||
public int Eintrag;
|
||||
public DateTime Datum;
|
||||
public string Druck;
|
||||
public EDataType Methode;
|
||||
}
|
||||
}
|
||||
8
DPGetDataContract/IDPGetDataContract.cs
Normal file
8
DPGetDataContract/IDPGetDataContract.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DPGetDataContract {
|
||||
public interface IDPGetDataContract {
|
||||
List<GetDataStructure> ReadMessureList {get;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user