20 lines
483 B
C#
20 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace dealer
|
|
{
|
|
public class Vehicle
|
|
{
|
|
public string? Spz { get; set; }
|
|
public string? Model { get; set; }
|
|
public string? Barva { get; set; }
|
|
public int? RokVyroby { get; set; }
|
|
public int? NajeteKm { get; set; }
|
|
public decimal? Cena { get; set; }
|
|
public string? Fotografie { get; set; }
|
|
}
|
|
}
|