ProjectPerformanceStats

@Serializable
data class ProjectPerformanceStats(val id: String, val name: String, val updates: Int, val totalDevelopmentDays: Int, val averageDaysPerUpdate: Double)

The ProjectPerformanceStats data class allow to represent a the performance stats about a project

Author

N7ghtm4r3 - Tecknobit

Constructors

Link copied to clipboard
constructor(id: String, name: String, updates: Int, totalDevelopmentDays: Int, averageDaysPerUpdate: Double)

Properties

Link copied to clipboard

The average number of the development days of the project

Link copied to clipboard
val id: String

The identifier of the project

Link copied to clipboard

The name of the project

Link copied to clipboard

The total number of the development days of the project

Link copied to clipboard

The total number of the updates of the project