2025-06-12 18:22:37 +02:00
|
|
|
|
using Vegasco.Server.Api.Cars;
|
2024-08-17 16:38:40 +02:00
|
|
|
|
|
2025-06-12 18:22:37 +02:00
|
|
|
|
namespace Vegasco.Server.Api.Users;
|
2024-08-17 16:38:40 +02:00
|
|
|
|
|
|
|
|
|
|
public class User
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Id { get; set; } = "";
|
|
|
|
|
|
|
|
|
|
|
|
public virtual IList<Car> Cars { get; set; } = [];
|
|
|
|
|
|
}
|