You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Discord.API.Rest
- {
- internal class CreatePostParams
- {
- // thread
- [JsonProperty("name")]
- public string Title { get; set; }
-
- [JsonProperty("auto_archive_duration")]
- public ThreadArchiveDuration ArchiveDuration { get; set; }
-
- [JsonProperty("rate_limit_per_user")]
- public Optional<int?> Slowmode { get; set; }
-
- [JsonProperty("message")]
- public ForumThreadMessage Message { get; set; }
-
- [JsonProperty("applied_tags")]
- public Optional<ulong[]> Tags { get; set; }
- }
- }
|