Добавлены сохранение и загрузка персонажей

This commit is contained in:
2024-10-08 18:33:19 +03:00
parent ed5ef49236
commit 916b9dc85c
11 changed files with 208 additions and 51 deletions

View 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;
}
}
}