Files
CPXV2/SystemX.Net.CP.Platform/SystemX.Net.Platform/SystemX.Common/Util/ObservableEvent.cs
2024-06-26 10:30:00 +09:00

16 lines
353 B
C#

using System;
using System.Runtime.InteropServices;
namespace SystemX.Net.Platform.Common.Util
{
/// <summary>
/// Rx: System.Reactive.Subjects.Subject 에 대한 base interface
/// </summary>
[ComVisible(false)]
public interface IObservableEvent
{
}
public interface IObservableUIEvent : IObservableEvent { }
}