20 lines
424 B
C#
20 lines
424 B
C#
// Copyright (c) 2020-present schick Informatik
|
|
// Description: Verarbeitung von empfangenen Rückmeldungen
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bsmd.dbh
|
|
{
|
|
internal static class ResponseUtil
|
|
{
|
|
internal static bool Read(string inputFile)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|