ISystemMobilAreaApplication.cs 362 B

1234567891011121314
  1. using Hotline.Share.Dtos.Settings;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Hotline.Application.Systems
  8. {
  9. public interface ISystemMobilAreaApplication
  10. {
  11. Task<SystemMobilAreaDto> GetPhoneCardArea(string PhoneNum,CancellationToken cancellationToken);
  12. }
  13. }