123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class DraggableItem
- {
- public string Title { get; set; }
- public string Value { get; set; }
- public string Icon { get; set; }
- public int Height { get; set; }
- }
- public class DraggableItemPosition
- {
- public string Title { get; set; }
- public string Value { get; set; }
- public string Icon { get; set; }
- public int Left { get; set; }
- public int Top { get; set; }
- }
- }
|