ActiveTransactionProviderArgs.cs 255 B

123456789
  1. using System.Collections.Generic;
  2. namespace Abp.Data
  3. {
  4. public class ActiveTransactionProviderArgs : Dictionary<string, object>
  5. {
  6. public static ActiveTransactionProviderArgs Empty { get; } = new ActiveTransactionProviderArgs();
  7. }
  8. }