git_bsmd/bsmd.dbh/ResponseUtil.cs
2022-11-11 10:57:32 +01:00

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();
}
}
}