IResultAsync.cs 163 B

1234567
  1. namespace XGame.Framework.Asyncs
  2. {
  3. public interface IResultAsync<TResult> : IAsync, IAsyncResultable<TResult>
  4. {
  5. TResult Result { get; }
  6. }
  7. }