Implement all car endpoints

This commit is contained in:
2024-08-17 16:38:40 +02:00
parent a708ed25e7
commit 877e7989cd
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; } = [];
}