10 lines
256 B
C#
10 lines
256 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AppLauncher.Models
|
|
{
|
|
public class LauncherSession
|
|
{
|
|
public int DefaultHeight { get; set; } = 280;
|
|
public List<TileGroupModel> Groups { get; set; } = new List<TileGroupModel>();
|
|
}
|
|
} |