ICommonService.cs 189 B

12345678910
  1. namespace Admin.NET.Core.Service;
  2. public interface ICommonService
  3. {
  4. Task<IEnumerable<EntityInfo>> GetEntityInfos();
  5. string GetHost();
  6. string GetFileUrl(SysFile sysFile);
  7. }