DraggableItem.cs 587 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class DraggableItem
  8. {
  9. public string Title { get; set; }
  10. public string Value { get; set; }
  11. public string Icon { get; set; }
  12. public int Height { get; set; }
  13. }
  14. public class DraggableItemPosition
  15. {
  16. public string Title { get; set; }
  17. public string Value { get; set; }
  18. public string Icon { get; set; }
  19. public int Left { get; set; }
  20. public int Top { get; set; }
  21. }
  22. }