We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb22af8 commit 06636d7Copy full SHA for 06636d7
1 file changed
src/AndroidClient/android/src/androidTest/java/net/servicestack/android/ExtendedRockstar.java
@@ -0,0 +1,13 @@
1
+package net.servicestack.android;
2
+
3
+/**
4
+ * Created by mythz on 6/30/2015.
5
+ */
6
+public class ExtendedRockstar extends dto.Rockstar {
7
+ public Integer ExtendedId = null;
8
9
+ public ExtendedRockstar(Integer extendedId) {
10
+ ExtendedId = extendedId;
11
+ super.Id = extendedId;
12
+ }
13
+}
0 commit comments