Add “WatchFeeds” command
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / WatchFeeds.java
1 package net.pterodactylus.fcp;
2
3 /**
4  * Implementation of the “WatchFeeds” command.
5  *
6  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
7  */
8 public class WatchFeeds extends FcpMessage {
9
10         public WatchFeeds(boolean enabled) {
11                 super("WatchFeeds");
12                 setField("Enabled", String.valueOf(enabled));
13         }
14
15 }