Добавлены сохранение и загрузка персонажей
This commit is contained in:
23
Helpers/Cars_Parameters.cs
Normal file
23
Helpers/Cars_Parameters.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user