Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / MvcFilter.cs
1 namespace System.Web.Mvc {
2     public abstract class MvcFilter : IMvcFilter {
3         protected MvcFilter() {
4         }
5
6         protected MvcFilter(bool allowMultiple, int order) {
7             AllowMultiple = allowMultiple;
8             Order = order;
9         }
10
11         public bool AllowMultiple {
12             get;
13             private set;
14         }
15
16         public int Order {
17             get;
18             private set;
19         }
20     }
21 }