mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
14 lines
282 B
C#
14 lines
282 B
C#
using System;
|
|
|
|
namespace _Project.Develop.Runtime.Utils.ReactiveManagement.Event
|
|
{
|
|
public interface IReadOnlyEvent
|
|
{
|
|
IDisposable Subscribe(Action action);
|
|
}
|
|
|
|
public interface IReadOnlyEvent<T>
|
|
{
|
|
IDisposable Subscribe(Action<T> action);
|
|
}
|
|
} |