Back to project page StravaFlow.
The source code is released under:
MIT License
If you think the Android project StravaFlow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.mattlogan.stravaflow.api.model; /* w w w . j a va2s . com*/ public class StravaAthlete { String id; public StravaAthlete(String id) { this.id = id; } public String getId() { return id; } }