Created
March 8, 2013 08:57
-
-
Save haraldfianbakken/5115121 to your computer and use it in GitHub Desktop.
IBuddyCommands (REST)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web.Mvc; | |
namespace SharePirates.BuddyWeb.Controllers | |
{ | |
public interface IBuddyCommands | |
{ | |
ActionResult Flash(string color); | |
ActionResult Twist(); | |
ActionResult HeartBeat(int ms=-1); | |
ActionResult HeadColor(string color); | |
ActionResult InvertHeart(); | |
ActionResult HeartColor(string color); | |
ActionResult Wag(); | |
ActionResult Flap(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment