23 lines
470 B
C#
23 lines
470 B
C#
using APT.Infrastructure.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace APT.Domain
|
|
{
|
|
public class APT_Test_Phone : MesEntityBase
|
|
{
|
|
public string Brand { get; set; }
|
|
|
|
public string Model { get; set; }
|
|
|
|
public decimal Price { get; set; }
|
|
|
|
public Guid TestUser_ID { get; set; }
|
|
|
|
public int? Number { get; set; }
|
|
|
|
public virtual APT_Test_User Nav_TestUser { get; set; }
|
|
}
|
|
}
|