DocSpace-buildtools/common/Tests/ASC.Webhooks.Tests/RequestHistory.cs

13 lines
263 B
C#
Raw Normal View History

2021-08-19 09:11:26 +00:00
using ASC.Common;
namespace ASC.Webhooks.Tests
{
[Singletone]
public class RequestHistory
{
public int FailedCounter { get; set; }
public int SuccessCounter { get; set; }
public bool СorrectSignature { get; set; }
}
}