Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IWordPressService.cs

10 lines
195 B
C#

using System.Collections.Generic;
using LaDOSE.Entity.Wordpress;
namespace LaDOSE.Business.Interface
{
public interface IWordPressService
{
List<WPEvent> GetWpEvent();
}
}