mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
14 lines
294 B
C#
14 lines
294 B
C#
using Xzy.KnowledgeBase.Domain.Repositories.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xzy.KnowledgeBase.Domain.Repositories
|
|
{
|
|
public interface IApps_Repositories : IRepository<Apps>
|
|
{
|
|
}
|
|
}
|