IClientInfoProvider.cs 197 B

1234567891011
  1. namespace Abp.Auditing
  2. {
  3. public interface IClientInfoProvider
  4. {
  5. string BrowserInfo { get; }
  6. string ClientIpAddress { get; }
  7. string ComputerName { get; }
  8. }
  9. }