15 lines
247 B
C#
15 lines
247 B
C#
using System;
|
|
|
|
namespace DesktopTools.Models
|
|
{
|
|
public class WindowDesktopExtensionControlModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public object Control { get; set; }
|
|
}
|
|
} |