Kit.Core/LibCommon/Kit.Core.Helpers/EndPoints/IEndPointFluent.cs

13 lines
524 B
C#

namespace Kit.Helpers.EndPoints
{
public interface IEndPointFluent<TEndPointFluent>
{
TEndPointFluent NeedHttpGet(bool required = true);
TEndPointFluent NeedHttpPost(bool required = true);
TEndPointFluent NeedSecurityKey(string securityKeyName);
TEndPointFluent WithDefaults(object defaults);
TEndPointFluent WithConstraints(object constraints);
TEndPointFluent WithNamespaces(string[] namespaces);
TEndPointFluent WithDataTokens(object dataTokens);
}
}