Files
LanMountainDesktop/LanMountainDesktop/Models/DesktopComponentPlacementSnapshot.cs
2026-05-27 09:41:18 +08:00

19 lines
482 B
C#

namespace LanMountainDesktop.Models;
public sealed class DesktopComponentPlacementSnapshot
{
public string PlacementId { get; set; } = string.Empty;
public int PageIndex { get; set; }
public string ComponentId { get; set; } = string.Empty;
public string ComponentName { get; set; } = string.Empty;
public int Row { get; set; }
public int Column { get; set; }
public int WidthCells { get; set; } = 1;
public int HeightCells { get; set; } = 1;
}