12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Drawing;
- namespace Bowin.Web.Controls.Mvc
- {
- public class DroppableContainerOptions
- {
- public string ID { get; set; }
- public string Name { get; set; }
- public int Width { get; set; }
- public int Height { get; set; }
- public int BorderWidth { get; set; }
- public Color BorderColor { get; set; }
- public Color BackgroundColor { get; set; }
- public string BackgroundUrl { get; set; }
- public Color ForeColor { get; set; }
- public DraggableListDropOptions DraggableInfo { get; set; }
- }
- }
|