13 lines
319 B
C#
13 lines
319 B
C#
|
namespace GtaVUsersInfo
|
|||
|
{
|
|||
|
public class Car
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public int Price { get; set; }
|
|||
|
public string Photo { get; set; }
|
|||
|
public string Manufacturer { get; set; }
|
|||
|
public string Class { get; set; }
|
|||
|
public string Model { get; set; }
|
|||
|
}
|
|||
|
}
|