Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / Async / AsyncVoid.cs
1 namespace System.Web.Mvc.Async {
2     using System;
3
4     // Dummy type used for passing something resembling 'void' to the async delegate functions
5     internal struct AsyncVoid {
6     }
7 }