19 lines
347 B
C#
19 lines
347 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ModelTools.Models
|
|||
|
{
|
|||
|
public class WindowDesktopExtensionControlModel
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
|
|||
|
public int Order { get; set; }
|
|||
|
|
|||
|
public string Title { get; set; }
|
|||
|
|
|||
|
public object Control { get; set; }
|
|||
|
}
|
|||
|
}
|