Files
Petr_PTA25_Proj_02-10/dealer/Vehicle.cs
2026-02-10 15:12:01 +01:00

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