DynamicDataColumn.cs 633 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.DynamicData.ModelProviders;
  6. namespace MonoTests.DataSource
  7. {
  8. public abstract class DynamicDataColumn
  9. {
  10. public Type DataType { get; protected set; }
  11. public string Name { get; protected set; }
  12. public bool PrimaryKey { get; protected set; }
  13. public string AssociatedTo { get; protected set; }
  14. public AssociationDirection AssociationDirection { get; protected set; }
  15. public bool CustomProperty { get; protected set; }
  16. public bool Generated { get; protected set; }
  17. public bool Sortable { get; protected set; }
  18. }
  19. }