16 lines
299 B
C#
16 lines
299 B
C#
using DesktopTools.Controls;
|
|
using System;
|
|
|
|
namespace DesktopTools.Models
|
|
{
|
|
public class WindowDesktopExtensionControlModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public AbstractControlViewEntityList Control { get; set; }
|
|
}
|
|
} |