feat: add ai type and state info
This commit is contained in:
@ -8,7 +8,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Client.Domain.Common
|
||||
{
|
||||
public class ObservableObject : INotifyPropertyChanged
|
||||
public class ObservableObject : ObservableObjectInterface
|
||||
{
|
||||
public event PropertyChangedEventHandler? PropertyChanged;
|
||||
public void OnPropertyChanged([CallerMemberName] string prop = "")
|
||||
|
15
Client/Domain/Common/ObservableObjectInterface.cs
Normal file
15
Client/Domain/Common/ObservableObjectInterface.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Client.Domain.Common
|
||||
{
|
||||
public interface ObservableObjectInterface : INotifyPropertyChanged
|
||||
{
|
||||
void OnPropertyChanged([CallerMemberName] string prop = "");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user