11 lines
276 B
C#
11 lines
276 B
C#
using ReactiveUI;
|
|
|
|
namespace ServiceLib.Base
|
|
{
|
|
public class MyReactiveObject : ReactiveObject
|
|
{
|
|
protected static Config? _config;
|
|
protected Func<EViewAction, object?, Task<bool>>? _updateView;
|
|
protected NoticeHandler? _noticeHandler;
|
|
}
|
|
} |