1234567891011121314 |
- using Hotline.Share.Dtos.Settings;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Hotline.Application.Systems
- {
- public interface ISystemMobilAreaApplication
- {
- Task<SystemMobilAreaDto> GetPhoneCardArea(string PhoneNum,CancellationToken cancellationToken);
- }
- }
|