using System.Collections.Generic; namespace Tesla { public class VehicleListResponse { public List response { get; set; } public int count { get; set; } } public class Vehicle { public long id { get; set; } public int vehicle_id { get; set; } public string vin { get; set; } public string display_name { get; set; } public string option_codes { get; set; } public object color { get; set; } public string access_type { get; set; } public List tokens { get; set; } public string state { get; set; } public bool in_service { get; set; } public string id_s { get; set; } public bool calendar_enabled { get; set; } public int api_version { get; set; } public object backseat_token { get; set; } public object backseat_token_updated_at { get; set; } public string command_signing { get; set; } } }