~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/core/POBox/.svn/text-base/SubscriptionDetails.cs.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/****************************************************************************
2
 
 |
3
 
 | Copyright (c) 2007 Novell, Inc.
4
 
 | All Rights Reserved.
5
 
 |
6
 
 | This program is free software; you can redistribute it and/or
7
 
 | modify it under the terms of version 2 of the GNU General Public License as
8
 
 | published by the Free Software Foundation.
9
 
 |
10
 
 | This program is distributed in the hope that it will be useful,
11
 
 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 | GNU General Public License for more details.
14
 
 |
15
 
 | You should have received a copy of the GNU General Public License
16
 
 | along with this program; if not, contact Novell, Inc.
17
 
 |
18
 
 | To contact Novell about this file by physical or electronic mail,
19
 
 | you may find current contact information at www.novell.com 
20
 
 |
21
 
 | Author: Rob
22
 
 |***************************************************************************/
23
 
 
24
 
 
25
 
using System;
26
 
 
27
 
namespace Simias.POBox
28
 
{
29
 
        /// <summary>
30
 
        /// Subscription Details
31
 
        /// </summary>
32
 
        [Serializable]
33
 
        public class SubscriptionDetails
34
 
        {
35
 
                /// <summary>
36
 
                /// The subscription collection dir node id
37
 
                /// </summary>
38
 
                public string DirNodeID;
39
 
 
40
 
                /// <summary>
41
 
                /// The subscription collection dir node name
42
 
                /// </summary>
43
 
                public string DirNodeName;
44
 
 
45
 
                /// <summary>
46
 
                /// The subscription collection service URL
47
 
                /// </summary>
48
 
                public string CollectionUrl;
49
 
        }
50
 
}