24 lines
546 B
C#
24 lines
546 B
C#
using GtaVUsersInfo.Controls;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace GtaVUsersInfo.Helpers
|
|
{
|
|
[Serializable]
|
|
public class Cars_Parameters
|
|
{
|
|
public List<Car> cars { get; set; }
|
|
public List<Parameter> parameters { get; set; }
|
|
|
|
public Cars_Parameters(List<Car> cars, List<Parameter> parameters)
|
|
{
|
|
this.cars = cars;
|
|
this.parameters = parameters;
|
|
}
|
|
}
|
|
}
|