DocSpace-client/common/ASC.Webhooks/Dao/Models/WebhooksQueueEntry.cs

16 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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; }
}
}