~manishsinha/lpsharp/proxy-code

« back to all changes in this revision

Viewing changes to LpNet.LpSharp/ClientProxy/HasMilestonesFull.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 HasMilestonesFull
20
 
    {
21
 
        
22
 
        protected string _selfLink;
23
 
        
24
 
        protected string _webLink;
25
 
        
26
 
        protected string _resourceTypeLink;
27
 
        
28
 
        protected string _httpEtag;
29
 
        
30
 
        protected string _activeMilestonesCollectionLink;
31
 
        
32
 
        protected string _allMilestonesCollectionLink;
33
 
        
34
 
        /// <summary>
35
 
        /// The canonical link to this resource.
36
 
        /// </summary>
37
 
        [Description("has_milestones")]
38
 
        public string SelfLink
39
 
        {
40
 
            get
41
 
            {
42
 
                return this._selfLink;
43
 
            }
44
 
            set
45
 
            {
46
 
                this._selfLink = value;
47
 
            }
48
 
        }
49
 
        
50
 
        /// <summary>
51
 
        /// The canonical human-addressable web link to this resource.
52
 
        /// </summary>
53
 
        public string WebLink
54
 
        {
55
 
            get
56
 
            {
57
 
                return this._webLink;
58
 
            }
59
 
            set
60
 
            {
61
 
                this._webLink = value;
62
 
            }
63
 
        }
64
 
        
65
 
        /// <summary>
66
 
        /// The link to the WADL description of this resource.
67
 
        /// </summary>
68
 
        public string ResourceTypeLink
69
 
        {
70
 
            get
71
 
            {
72
 
                return this._resourceTypeLink;
73
 
            }
74
 
            set
75
 
            {
76
 
                this._resourceTypeLink = value;
77
 
            }
78
 
        }
79
 
        
80
 
        /// <summary>
81
 
        /// The value of the HTTP ETag for this resource.
82
 
        /// </summary>
83
 
        public string HttpEtag
84
 
        {
85
 
            get
86
 
            {
87
 
                return this._httpEtag;
88
 
            }
89
 
            set
90
 
            {
91
 
                this._httpEtag = value;
92
 
            }
93
 
        }
94
 
        
95
 
        /// <summary>
96
 
        /// The visible and active milestones associated with this object, ordered by date expected.
97
 
        /// </summary>
98
 
        [Description("milestone-page-resource")]
99
 
        public string ActiveMilestonesCollectionLink
100
 
        {
101
 
            get
102
 
            {
103
 
                return this._activeMilestonesCollectionLink;
104
 
            }
105
 
            set
106
 
            {
107
 
                this._activeMilestonesCollectionLink = value;
108
 
            }
109
 
        }
110
 
        
111
 
        /// <summary>
112
 
        /// All milestones associated with this object, ordered by date expected.
113
 
        /// </summary>
114
 
        [Description("milestone-page-resource")]
115
 
        public string AllMilestonesCollectionLink
116
 
        {
117
 
            get
118
 
            {
119
 
                return this._allMilestonesCollectionLink;
120
 
            }
121
 
            set
122
 
            {
123
 
                this._allMilestonesCollectionLink = value;
124
 
            }
125
 
        }
126
 
    }
127
 
}