-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAllProjectMembers.cs
More file actions
50 lines (44 loc) · 1.22 KB
/
AllProjectMembers.cs
File metadata and controls
50 lines (44 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hansoft.ObjectWrapper
{
/// <summary>
/// Represents assignment to all users in the project. This class is a singleton.
/// </summary>
public class AllProjectMembers : Resource
{
static private AllProjectMembers instance;
/// <summary>
/// The single instance of this class.
/// </summary>
static public AllProjectMembers Instance
{
get
{
if (instance == null)
instance = new AllProjectMembers();
return instance;
}
}
private AllProjectMembers()
: base(null)
{
}
/// <summary>
/// Returns the localized string representing all project members in the Hansoft user interface. Cannot be set.
/// </summary>
public override string Name
{
get
{
return HPMUtilities.GetLocalizedStringForFullId("NLocalize/NDatabaseFunctions/NUsersProjects/AllProjectMembers");
}
set
{
}
}
}
}