mh_frame_sps/APT.Domain/LDX_Test_User.cs

19 lines
442 B
C#
Raw Normal View History

2026-04-07 13:47:52 +08:00
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; }
}
}