File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,28 @@ public class LootLockerInventory
137
137
138
138
public float balance ;
139
139
}
140
+
141
+ public class LootLockerPlayerFileRequest
142
+ {
143
+ public string purpose { get ; set ; }
144
+ public string path_to_file { get ; set ; }
145
+ }
146
+
147
+ public class LootLockerPlayerFilesResponse : LootLockerResponse
148
+ {
149
+ public LootLockerPlayerFile [ ] items { get ; set ; }
150
+ }
151
+
152
+ public class LootLockerPlayerFile : LootLockerResponse
153
+ {
154
+ public int id { get ; set ; }
155
+ public string name { get ; set ; }
156
+ public int size { get ; set ; }
157
+ public string purpose { get ; set ; }
158
+ public string url { get ; set ; }
159
+ public DateTime url_expires_at { get ; set ; }
160
+ public DateTime created_at { get ; set ; }
161
+ }
140
162
141
163
[ System . Serializable ]
142
164
public class LootLockerAssetClass
You can’t perform that action at this time.
0 commit comments