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.

IApplication.cs 934 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425262728293031
  1. namespace Discord
  2. {
  3. /// <summary>
  4. /// Represents a Discord application created via the developer portal.
  5. /// </summary>
  6. public interface IApplication : ISnowflakeEntity
  7. {
  8. /// <summary>
  9. /// Gets the name of the application.
  10. /// </summary>
  11. string Name { get; }
  12. /// <summary>
  13. /// Gets the description of the application.
  14. /// </summary>
  15. string Description { get; }
  16. /// <summary>
  17. /// Gets the RPC origins of the application.
  18. /// </summary>
  19. string[] RPCOrigins { get; }
  20. ulong Flags { get; }
  21. /// <summary>
  22. /// Gets the icon URL of the application.
  23. /// </summary>
  24. string IconUrl { get; }
  25. /// <summary>
  26. /// Gets the partial user object containing info on the owner of the application.
  27. /// </summary>
  28. IUser Owner { get; }
  29. }
  30. }