Table of Contents

Class Group

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

A worker group.

[DataContract(IsReference = true)]
public class Group
Inheritance
Group
Inherited Members

Constructors

Group(int, string)

Initializes a new instance of the Group class.

public Group(int groupId, string name)

Parameters

groupId int

The unique identifier for this group.

name string

The group name.

Exceptions

ArgumentNullException

name is null.

Properties

GroupId

Gets the unique identifier for this group.

[DataMember]
public int GroupId { get; }

Property Value

int

Name

Gets the group name.

[DataMember]
public string Name { get; }

Property Value

string