IContentJsonService.cs 169 B

1234567
  1. namespace GxPress.Service.Interface.ContentJson
  2. {
  3. public interface IContentJsonService:IService
  4. {
  5. string GetTitile(string title, string content);
  6. }
  7. }