~manishsinha/lpsharp/proxy-code

« back to all changes in this revision

Viewing changes to LpNet.LpSharp/ClientProxy/BranchMergeQueueDiff.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 BranchMergeQueueDiff
20
 
    {
21
 
        
22
 
        protected string _configuration;
23
 
        
24
 
        protected string _description;
25
 
        
26
 
        protected string _name;
27
 
        
28
 
        /// <summary>
29
 
        /// Configuration
30
 
        /// A JSON string of configuration values.
31
 
        /// </summary>
32
 
        public string Configuration
33
 
        {
34
 
            get
35
 
            {
36
 
                return this._configuration;
37
 
            }
38
 
            set
39
 
            {
40
 
                this._configuration = value;
41
 
            }
42
 
        }
43
 
        
44
 
        /// <summary>
45
 
        /// Description
46
 
        /// A short description of the purpose of this merge queue.
47
 
        /// </summary>
48
 
        public string Description
49
 
        {
50
 
            get
51
 
            {
52
 
                return this._description;
53
 
            }
54
 
            set
55
 
            {
56
 
                this._description = value;
57
 
            }
58
 
        }
59
 
        
60
 
        /// <summary>
61
 
        /// Name
62
 
        /// Keep very short, unique, and descriptive, because it will be used in URLs. Examples: main, devel, release-1.0, gnome-vfs.
63
 
        /// </summary>
64
 
        public string Name
65
 
        {
66
 
            get
67
 
            {
68
 
                return this._name;
69
 
            }
70
 
            set
71
 
            {
72
 
                this._name = value;
73
 
            }
74
 
        }
75
 
    }
76
 
}