1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace GDNXFD.Data
- {
- public class TestingPointBase
- {
- public virtual string UniformCode { get; set; }
- public virtual string Name { get; set; }
- }
- }
|