using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; namespace Bowin.Web.Controls.Mvc { public class DraggableListControlOptions : DraggableListOptions { public string ID { get; set; } public string Name { get; set; } public int? Width { get; set; } public int? Height { get; set; } public Color ForeColor { get; set; } } public class DraggableListDropOptions { public List ItemList { get; set; } public string ItemSourceUrl { get; set; } public int ItemHeight { get; set; } public string TitleField { get; set; } public string ValueField { get; set; } public string IconField { get; set; } public string LeftField { get; set; } public string TopField { get; set; } } public class DraggableListOptions { public List ItemList { get; set; } public string ItemSourceUrl { get; set; } public int ItemHeight { get; set; } public string TitleField { get; set; } public string ValueField { get; set; } public string IconField { get; set; } } }