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.

CreateGuildIntegrationParams.cs 420 B

12345678910111213141516171819
  1. #pragma warning disable CS1591
  2. using Discord.Serialization;
  3. namespace Discord.API.Rest
  4. {
  5. internal class CreateGuildIntegrationParams
  6. {
  7. [ModelProperty("id")]
  8. public ulong Id { get; }
  9. [ModelProperty("type")]
  10. public string Type { get; }
  11. public CreateGuildIntegrationParams(ulong id, string type)
  12. {
  13. Id = id;
  14. Type = type;
  15. }
  16. }
  17. }