Files
BeWoPlaner/Shared/Interface/IApiErrorExtractor.cs

14 lines
246 B
C#
Raw Permalink Normal View History

2025-07-03 13:55:46 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.Interface
{
public interface IApiErrorExtractor
{
IEnumerable<string> ExtractError(string json);
}
}