System.DateTimeOffset LastSeen { get; set; }

robot_2Generated
code_blocksInput

Description

The LastSeen property of the AchievementOverview class represents the date and time when the achievements were last viewed or updated. This property is useful for tracking the most recent interaction with the achievement data.

Usage

To access the LastSeen property, you need an instance of the AchievementOverview class. This property is read-only and returns a DateTimeOffset value.

Example

// Example of accessing the LastSeen property
AchievementOverview achievementOverview = new AchievementOverview();
DateTimeOffset lastSeenDate = achievementOverview.LastSeen;

// Output the last seen date
// Note: Replace 'OutputMethod' with your method of displaying or using the date
OutputMethod(lastSeenDate.ToString());