~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/webservices/.svn/text-base/SearchProperty.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
 
using System;
25
 
 
26
 
namespace iFolder.WebService
27
 
{
28
 
        /// <summary>
29
 
        /// Search Properties
30
 
        /// </summary>
31
 
        public enum SearchProperty
32
 
        {
33
 
                /// <summary>
34
 
                /// iFolder User Username
35
 
                /// </summary>
36
 
                UserName,
37
 
 
38
 
                /// <summary>
39
 
                /// iFolder User Full Name
40
 
                /// </summary>
41
 
                FullName,
42
 
 
43
 
                /// <summary>
44
 
                /// iFolder User Last Name
45
 
                /// </summary>
46
 
                LastName,
47
 
 
48
 
                /// <summary>
49
 
                /// iFolder User First Name
50
 
                /// </summary>
51
 
                FirstName,
52
 
        }
53
 
}