Skip to content

Instantly share code, notes, and snippets.

View thomhurst's full-sized avatar

Tom Longhurst thomhurst

View GitHub Profile
using System;
using System.Collections.Generic;
using TomLonghurst.Events.NotifyValueChanged;
using System.Runtime.CompilerServices;
namespace TomLonghurst.Events.NotifyValueChanged.UnitTests
{
public partial class Person
:
INotifyTypeStringValueChanged, INotifyTypeInt32ValueChanged, INotifyValueChanged
{
using TomLonghurst.Events.NotifyValueChanged.SourceGeneration.Attributes;
using TomLonghurst.Events.NotifyValueChanged.SourceGeneration.Options;
namespace TomLonghurst.Events.NotifyValueChanged.UnitTests;
[NotifyTypeValueChange(typeof(string))]
[NotifyTypeValueChange(typeof(int))]
[NotifyAnyValueChange]
public partial class Person
{