Created
June 24, 2016 02:27
-
-
Save calvinnr7/9d5550db05571e4c1c6e8c45e9805b22 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AsteroidWrapper | |
{ | |
@AuraEnabled | |
public String str_Asteroid_Name {get;set;} | |
@AuraEnabled | |
public Double str_Magnitude {get;set;} | |
@AuraEnabled | |
public String str_NASA_URL {get;set;} | |
@AuraEnabled | |
public Double str_Estimated_Diameter_Max_Kms {get;set;} | |
@AuraEnabled | |
public String isAsteroidDangerous {get;set;} | |
@AuraEnabled | |
public String str_closest_Approach_Earth_Date {get;set;} | |
@AuraEnabled | |
public String str_velocity_per_sec_kms {get;set;} | |
@AuraEnabled | |
public String str_misses_Earth_by_kms {get;set;} | |
public AsteroidWrapper() | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment