Add adding and detail

This commit is contained in:
2026-02-10 15:12:01 +01:00
parent ad447d109f
commit d6ae47d23d
13 changed files with 491 additions and 40 deletions

19
dealer/Vehicle.cs Normal file
View File

@@ -0,0 +1,19 @@
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; }
}
}