Files
LanMountainDesktop/LanMountainDesktop/Models/DesktopComponentPlacementSnapshot.cs

19 lines
424 B
C#
Raw Normal View History

2026-03-04 15:22:52 +08:00
namespace LanMountainDesktop.Models;
2026-03-01 16:50:06 +08:00
public sealed class DesktopComponentPlacementSnapshot
{
public string PlacementId { get; set; } = string.Empty;
public int PageIndex { get; set; }
public string ComponentId { 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;
}