mirror of
https://github.com/spacebarchat/server.git
synced 2026-06-07 19:41:50 +00:00
11 lines
267 B
C#
11 lines
267 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Spacebar.Models.Api;
|
|
|
|
public class CreateWebhookRequest {
|
|
[JsonPropertyName("name")]
|
|
public required string Name { get; set; }
|
|
|
|
[JsonPropertyName("avatar")]
|
|
public string? AvatarData { get; set; }
|
|
} |