mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
a61cff8dfd
Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
25 lines
636 B
C#
25 lines
636 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Shared.Models.FocusView;
|
|
|
|
public sealed class FocusViewTile
|
|
{
|
|
[JsonPropertyName(nameof(Component))]
|
|
public FocusViewComponent Component { get; set; }
|
|
|
|
[JsonPropertyName(nameof(Visible))]
|
|
public bool Visible { get; set; } = true;
|
|
|
|
[JsonPropertyName(nameof(Column))]
|
|
public int Column { get; set; } = 1;
|
|
|
|
[JsonPropertyName(nameof(Row))]
|
|
public int Row { get; set; } = 1;
|
|
|
|
[JsonPropertyName(nameof(ColumnSpan))]
|
|
public int ColumnSpan { get; set; } = 1;
|
|
|
|
[JsonPropertyName(nameof(RowSpan))]
|
|
public int RowSpan { get; set; } = 1;
|
|
}
|