11 lines
251 B
C#
11 lines
251 B
C#
using System;
|
|
|
|
namespace PSCHelpdesk.Shared.Model;
|
|
|
|
public class LayoutItem
|
|
{
|
|
public string DockId { get; set; }
|
|
public string Header { get; set; }
|
|
public string DefaultDockGroupId { get; set; }
|
|
public string Content { get; set; }
|
|
} |