mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
15 lines
279 B
C#
15 lines
279 B
C#
using WowUp.WPF.Entities;
|
|
|
|
namespace WowUp.WPF.Models.Events
|
|
{
|
|
public class PreferenceEventArgs
|
|
{
|
|
public Preference Preference { get; }
|
|
|
|
public PreferenceEventArgs(Preference preference)
|
|
{
|
|
Preference = preference;
|
|
}
|
|
}
|
|
}
|