IPageUpdateInfoService.cs 205 B

123456789101112131415
  1. using Dto;
  2. using Vo;
  3. using Model;
  4. using Model.Base;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace Services.Client
  7. {
  8. public interface IPageUpdateInfoService : IBaseService<PageUpdateInfo>
  9. {
  10. }
  11. }