vassago/Models/Webhook.cs
adam 65b3985b14
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
configurations but not webhooks
see #47
2025-07-09 15:07:42 -04:00

20 lines
556 B
C#

namespace vassago.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using vassago.Models;
public class Webhook
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Guid Id { get; set; }
public UAC Uac {get;set;}
public string Trigger { get; set; }
public Uri Uri { get; set; }
public Enumerations.HttpVerb Method { get; set; }
public List<string> Headers { get; set; }
public string Content { get; set; }
public string Description { get; set; }
}