Class Teams
Team and team user details.
[DataContract]
public class Teams
- Inheritance
-
Teams
- Inherited Members
Constructors
Teams(string, long, long, string)
Initializes a new instance of the Teams class.
public Teams(string teamName = null, long createdDate = 0, long modifiedDate = 0, string teamId = null)
Parameters
teamNamestringGets or sets the team Name.
createdDatelongGets or sets created Date.
modifiedDatelongGets or sets modified Date.
teamIdstringGets or sets teamId.
Properties
CreatedDate
Gets or sets the created Date.
[DataMember(Name = "createdDate", EmitDefaultValue = false)]
public long CreatedDate { get; set; }
Property Value
ModifiedDate
Gets or sets the modified Date.
[DataMember(Name = "modifiedDate", EmitDefaultValue = false)]
public long ModifiedDate { get; set; }
Property Value
TeamId
Gets or sets the teamId.
[DataMember(Name = "teamId", EmitDefaultValue = false)]
public string TeamId { get; set; }
Property Value
TeamName
Gets or sets the team Name.
[DataMember(Name = "teamName", EmitDefaultValue = false)]
public string TeamName { get; set; }