Blog.Core/Blog.Core.IServices/IPasswordLibServices.cs
2018-08-24 14:06:48 +08:00

15 lines
306 B
C#

using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.IServices
{
public partial interface IPasswordLibServices :IBaseServices<PasswordLib>
{
}
}