Implement all car endpoints

This commit is contained in:
ThompsonNye
2024-08-03 20:16:30 +02:00
parent a1014bd009
commit b75b7512c2
22 changed files with 688 additions and 46 deletions

10
src/WebApi/Users/User.cs Normal file
View File

@@ -0,0 +1,10 @@
using Vegasco.WebApi.Cars;
namespace Vegasco.WebApi.Users;
public class User
{
public string Id { get; set; } = "";
public virtual IList<Car> Cars { get; set; } = [];
}