2003-09-04 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / DeviceSpecificChoiceTemplateContainer.cs
1 /**
2  * Project   : Mono
3  * Namespace : System.Web.UI.MobileControls
4  * Class     : DeviceSpecificChoiceTemplateContainer
5  * Author    : Gaurav Vaish
6  *
7  * Copyright : 2003 with Gaurav Vaish, and with
8  *             Ximian Inc
9  */
10
11 using System.Collections;
12 using System.Reflection;
13 using System.Web.UI;
14 using System.Web.Mobile;
15
16 namespace System.Web.UI.MobileControls
17 {
18         public class DeviceSpecificChoiceTemplateContainer
19         {
20                 private string name;
21                 private ITemplate template;
22
23                 public DeviceSpecificChoiceTemplateContainer()
24                 {
25                 }
26
27                 public string Name
28                 {
29                         get
30                         {
31                                 return name;
32                         }
33                         set
34                         {
35                                 name = value;
36                         }
37                 }
38
39                 public ITemplate Template
40                 {
41                         get
42                         {
43                                 return template;
44                         }
45                         set
46                         {
47                                 template = value;
48                         }
49                 }
50         }
51 }