namespace Discord { /// /// Represents a Discord application created via the developer portal. /// public interface IApplication : ISnowflakeEntity { /// /// Gets the name of the application. /// string Name { get; } /// /// Gets the description of the application. /// string Description { get; } /// /// Gets the RPC origins of the application. /// string[] RPCOrigins { get; } ulong Flags { get; } /// /// Gets the icon URL of the application. /// string IconUrl { get; } /// /// Gets the partial user object containing info on the owner of the application. /// IUser Owner { get; } } }