namespace Discord { /// /// Specifies the cache mode that should be used. /// public enum CacheMode { /// /// Allows the object to be downloaded if it does not exist in the current cache. /// AllowDownload, /// /// Only allows the object to be pulled from the existing cache. /// CacheOnly } }