Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
Fixed ActiveDtcs type
Browse files Browse the repository at this point in the history
  • Loading branch information
supergibbs committed Mar 27, 2016
1 parent b0c5177 commit 540d04c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AutomaticSharp/Models/Vehicle.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;

namespace AutomaticSharp.Models
{
Expand Down Expand Up @@ -87,6 +88,6 @@ public class Vehicle
/// <summary>
/// Currently active MILs
/// </summary>
public string ActiveDtcs { get; set; }
public List<string> ActiveDtcs { get; set; }
}
}

0 comments on commit 540d04c

Please sign in to comment.