Gave layout metadata its own sub-namespace Gave views their own sub-namespace Added view naming convention Moved layout data to a separate folder Moved layout contexts to a separate folder
22 lines
429 B
C#
22 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.ConsoleForms
|
|
{
|
|
public sealed class CancellationPipe
|
|
{
|
|
private bool cancel = false;
|
|
public bool Cancelled
|
|
{
|
|
get => cancel;
|
|
set => cancel |= value;
|
|
}
|
|
|
|
// Redundant
|
|
public void Cancel() => Cancelled = true;
|
|
}
|
|
}
|