14 lines
305 B
C#
14 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WinformDevFramework.Models.DBModels;
|
|
|
|
namespace WinformDevFramework.IRepository.System
|
|
{
|
|
public interface ISysDataSourceRepository:IBaseRepository<sysDataSource>
|
|
{
|
|
}
|
|
}
|