using APT.Infrastructure.Core; using System.Collections.Generic; namespace APT.Domain { public class APT_Test_User : MesEntityBase { public string Country { get; set; } public string FirstName { get; set; } public string LastName { get; set; } /// public virtual ICollection TestPhones { get; set; } public virtual ICollection Courses { get; set; } } }