Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Interface/IServiceTemplate/ICommentService.cs
2022-12-01 13:38:06 +08:00

10 lines
192 B
C#

using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
public partial interface ICommentService:IBaseService<CommentEntity>
{
}
}