summary refs log tree commit diff
path: root/extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-01-11 16:31:22 +0100
committerRory& <root@rory.gay>2026-01-11 16:31:22 +0100
commit654fcc29b5d2284d301df3f63e9db35c21ec63cf (patch)
treec9191c9b62307c08056e3b62cdcd7d4bfbb3c715 /extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs
parentMerge pull request #1464 from CyberL1/fix/build-workflow (diff)
downloadserver-ts-654fcc29b5d2284d301df3f63e9db35c21ec63cf.tar.xz
CDN-CS stuff
Diffstat (limited to 'extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs')
-rw-r--r--extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs b/extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs
new file mode 100644

index 00000000..e0914eaa --- /dev/null +++ b/extra/admin-api/Spacebar.AdminApi.Models/StickerModel.cs
@@ -0,0 +1,19 @@ +namespace Spacebar.AdminApi.Models; + +public class StickerModel { + public string Id { get; set; } = null!; + public string Name { get; set; } = null!; + public string? Description { get; set; } + public bool? Available { get; set; } + public string? Tags { get; set; } + public string? PackId { get; set; } + public string? GuildId { get; set; } + public string? UserId { get; set; } + public int Type { get; set; } + public int FormatType { get; set; } + // public virtual Guild? Guild { get; set; } + // public virtual StickerPack? Pack { get; set; } + // public virtual ICollection<StickerPack> StickerPacks { get; set; } = new List<StickerPack>(); + // public virtual User? User { get; set; } + // public virtual ICollection<Message> Messages { get; set; } = new List<Message>(); +} \ No newline at end of file