2021-03-28 20:46:27 +04:00
|
|
|
|
using DesktopTools.Controls;
|
|
|
|
|
using System;
|
2021-03-28 19:15:55 +04:00
|
|
|
|
|
2021-03-28 19:30:56 +04:00
|
|
|
|
namespace DesktopTools.Models
|
2021-03-28 19:15:55 +04:00
|
|
|
|
{
|
|
|
|
|
public class WindowDesktopExtensionControlModel
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Order { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
2021-03-30 22:34:31 +04:00
|
|
|
|
public AbstractControlViewEntityList Control { get; set; }
|
2021-03-28 19:15:55 +04:00
|
|
|
|
}
|
|
|
|
|
}
|