DocSpace-client/common/ASC.Webhooks/Dao/Models/WebhooksQueueEntry.cs
2021-07-31 20:12:41 +03:00

11 lines
252 B
C#

namespace ASC.Webhooks.Dao.Models
{
public class WebhooksQueueEntry
{
public int Id { get; set; }
public string Data { get; set; }
public string Uri { get; set; }
public string SecretKey { get; set; }
}
}