Class Comment
- Namespace
- Tudormobile.Strava.Model
- Assembly
- Tudormobile.Strava.dll
Represents a user-generated comment associated with an activity.
public class Comment
- Inheritance
-
Comment
- Inherited Members
Remarks
The Comment class encapsulates the content and metadata for a comment, including its unique identifier, the related activity, and the comment text. This class is typically used to store or transfer comment information within applications that support activity-based discussions or feedback.
Properties
ActivityId
The identifier of the activity this comment is related to.
public long ActivityId { get; set; }
Property Value
Athlete
The associated athlete.
public SummaryAthlete? Athlete { get; set; }
Property Value
CreatedAt
The time at which this comment was created.
public DateTime CreatedAt { get; set; }
Property Value
Id
The unique identifier of this comment.
public long Id { get; set; }
Property Value
Text
The content of the comment.
public string Text { get; set; }