DynamicDataColumn.cs 361 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace MonoTests.DataSource
  6. {
  7. public abstract class DynamicDataColumn
  8. {
  9. public Type DataType { get; protected set; }
  10. public string Name { get; protected set; }
  11. public bool PrimaryKey { get; protected set; }
  12. public bool ForeignKey { get; protected set; }
  13. }
  14. }