Ich bin schon groß und vier, komm doch und spiel mit mir, ich lad dich ein ich bin Caillou
17 lines
355 B
C#
17 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Interface
|
|
{
|
|
public interface IGkvTransferProtokoll
|
|
{
|
|
long? Oid { get; }
|
|
string IKDatenannahmestelle { get; set; }
|
|
string BezDatenannahmestelle { get; }
|
|
GkvTransferResultType? ResultType { get; set; }
|
|
}
|
|
}
|