19 lines
448 B
C#
19 lines
448 B
C#
using BreCalClient.misc.Model;
|
|
using System.Windows;
|
|
|
|
namespace BreCalClient
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
public static Participant Participant { get; set; } = new Participant();
|
|
|
|
private void Application_Exit(object sender, ExitEventArgs e)
|
|
{
|
|
BreCalClient.Properties.Settings.Default.Save();
|
|
}
|
|
}
|
|
}
|