DroppableContainerOptions.cs 669 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Drawing;
  6. namespace Bowin.Web.Controls.Mvc
  7. {
  8. public class DroppableContainerOptions
  9. {
  10. public string ID { get; set; }
  11. public string Name { get; set; }
  12. public int Width { get; set; }
  13. public int Height { get; set; }
  14. public int BorderWidth { get; set; }
  15. public Color BorderColor { get; set; }
  16. public Color BackgroundColor { get; set; }
  17. public string BackgroundUrl { get; set; }
  18. public Color ForeColor { get; set; }
  19. public DraggableListDropOptions DraggableInfo { get; set; }
  20. }
  21. }