~manishsinha/lpsharp/proxy-code

« back to all changes in this revision

Viewing changes to LpNet.LpSharp/ClientProxy/PackagesetFull.cs

  • Committer: Manish Sinha
  • Date: 2011-03-08 16:34:35 UTC
  • Revision ID: manishsinha.tech@gmail.com-20110308163435-tanqewijjckmjl6h
Remove all the proxy. It is a mess

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//------------------------------------------------------------------------------
2
 
// <auto-generated>
3
 
//     This code was generated by a tool.
4
 
//     Runtime Version: 2.0.50727.1433
5
 
//
6
 
//     Changes to this file may cause incorrect behavior and will be lost if
7
 
//     the code is regenerated.
8
 
// </auto-generated>
9
 
//------------------------------------------------------------------------------
10
 
 
11
 
namespace LpNet.Launchpad.Core
12
 
{
13
 
    using System.Collections.Generic;
14
 
    using System.Reflection;
15
 
    using System.ComponentModel;
16
 
    using System;
17
 
    
18
 
    
19
 
    public partial class PackagesetFull
20
 
    {
21
 
        
22
 
        protected string _selfLink;
23
 
        
24
 
        protected string _resourceTypeLink;
25
 
        
26
 
        protected string _httpEtag;
27
 
        
28
 
        protected string _dateCreated;
29
 
        
30
 
        protected string _description;
31
 
        
32
 
        protected string _distroseriesLink;
33
 
        
34
 
        protected string _name;
35
 
        
36
 
        protected string _ownerLink;
37
 
        
38
 
        /// <summary>
39
 
        /// The canonical link to this resource.
40
 
        /// </summary>
41
 
        [Description("packageset")]
42
 
        public string SelfLink
43
 
        {
44
 
            get
45
 
            {
46
 
                return this._selfLink;
47
 
            }
48
 
            set
49
 
            {
50
 
                this._selfLink = value;
51
 
            }
52
 
        }
53
 
        
54
 
        /// <summary>
55
 
        /// The link to the WADL description of this resource.
56
 
        /// </summary>
57
 
        public string ResourceTypeLink
58
 
        {
59
 
            get
60
 
            {
61
 
                return this._resourceTypeLink;
62
 
            }
63
 
            set
64
 
            {
65
 
                this._resourceTypeLink = value;
66
 
            }
67
 
        }
68
 
        
69
 
        /// <summary>
70
 
        /// The value of the HTTP ETag for this resource.
71
 
        /// </summary>
72
 
        public string HttpEtag
73
 
        {
74
 
            get
75
 
            {
76
 
                return this._httpEtag;
77
 
            }
78
 
            set
79
 
            {
80
 
                this._httpEtag = value;
81
 
            }
82
 
        }
83
 
        
84
 
        /// <summary>
85
 
        /// Date Created
86
 
        /// The creation date/time for the package set at hand.
87
 
        /// </summary>
88
 
        public string DateCreated
89
 
        {
90
 
            get
91
 
            {
92
 
                return this._dateCreated;
93
 
            }
94
 
            set
95
 
            {
96
 
                this._dateCreated = value;
97
 
            }
98
 
        }
99
 
        
100
 
        /// <summary>
101
 
        /// Description
102
 
        /// The description for the package set at hand.
103
 
        /// </summary>
104
 
        public string Description
105
 
        {
106
 
            get
107
 
            {
108
 
                return this._description;
109
 
            }
110
 
            set
111
 
            {
112
 
                this._description = value;
113
 
            }
114
 
        }
115
 
        
116
 
        /// <summary>
117
 
        /// Distribution series
118
 
        /// The distroseries to which this package set is related.
119
 
        /// </summary>
120
 
        [Description("distro_series")]
121
 
        public string DistroseriesLink
122
 
        {
123
 
            get
124
 
            {
125
 
                return this._distroseriesLink;
126
 
            }
127
 
            set
128
 
            {
129
 
                this._distroseriesLink = value;
130
 
            }
131
 
        }
132
 
        
133
 
        /// <summary>
134
 
        /// Valid package set name
135
 
        /// </summary>
136
 
        public string Name
137
 
        {
138
 
            get
139
 
            {
140
 
                return this._name;
141
 
            }
142
 
            set
143
 
            {
144
 
                this._name = value;
145
 
            }
146
 
        }
147
 
        
148
 
        /// <summary>
149
 
        /// Person
150
 
        /// The person who owns this package set.
151
 
        /// </summary>
152
 
        [Description("person")]
153
 
        public string OwnerLink
154
 
        {
155
 
            get
156
 
            {
157
 
                return this._ownerLink;
158
 
            }
159
 
            set
160
 
            {
161
 
                this._ownerLink = value;
162
 
            }
163
 
        }
164
 
    }
165
 
}