19 lines
442 B
C#
19 lines
442 B
C#
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<APT_Test_Phone> TestPhones { get; set; }
|
|
|
|
public virtual ICollection<APT_Test_Course> Courses { get; set; }
|
|
}
|
|
}
|