Show total number of results for google driver too. Helps to know if my query resulte...
[beagle.git] / search / Tiles / TileAction.cs
blobd69e98ae34db30a4f02a8db7aa78e964ce854469
1 using System;
3 namespace Search.Tiles {
5 public delegate void TileActionDelegate ();
7 public class TileAction {
9 public TileAction (string name, TileActionDelegate action)
11 this.name = name;
12 this.action = action;
15 public TileAction (string name, string stock, TileActionDelegate action)
17 this.name = name;
18 this.stock = stock;
19 this.action = action;
22 private string name;
23 public string Name {
24 get { return name; }
25 set { name = value; }
28 private TileActionDelegate action;
29 public TileActionDelegate Action {
30 get { return action; }
31 set { action = value; }
34 private string stock;
35 public string Stock {
36 get { return stock; }
37 set { stock = value; }