using System.ComponentModel.DataAnnotations.Schema; namespace TIAM.Entities.Drivers; public class UserProductJsonDetailModel { //public string Value { get; set; } = "ANYÁD!!!"; [NotMapped] public List? Cars { get; set; } //public List? Cars2 { get; set; } public UserProductJsonDetailModel(){} public UserProductJsonDetailModel(List? cars) { Cars = cars; //Cars2 = [new UserProductToCarTest()]; } } public class UserProductToCarTest { public string DisplayName { get; set; } = "dfasbhsftvfrv rvfe qvfr "; }