14 lines
322 B
C#
14 lines
322 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Basket.API.Infrastructure.Middlewares
|
|
{
|
|
public class FailingOptions
|
|
{
|
|
public string ConfigPath = "/Failing";
|
|
public List<string> EndpointPaths { get; set; } = new List<string>();
|
|
}
|
|
}
|