TestingPointBase.cs 418 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Runtime.CompilerServices;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace GDNXFD.Data
  10. {
  11. public class TestingPointBase
  12. {
  13. public virtual string UniformCode { get; set; }
  14. public virtual string Name { get; set; }
  15. }
  16. }