2026-08-21 18:46:26 +01:00
|
|
|
using PostIt.Views;
|
|
|
|
|
|
|
|
|
|
namespace PostIt.Tests;
|
|
|
|
|
|
|
|
|
|
internal class TestAppContext
|
|
|
|
|
{
|
2026-08-25 14:16:49 +01:00
|
|
|
public MainView? Window {get; set; }
|
2026-08-21 18:46:26 +01:00
|
|
|
public CirclesPage? page {get; set; }
|
|
|
|
|
public AddCircleMemberDialog? dialog { get; set; }
|
|
|
|
|
public App? App { get; internal set; }
|
|
|
|
|
}
|