13 lines
257 B
C#
13 lines
257 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using ViraScraper.Models;
|
|||
|
|
|
|||
|
|
namespace ViraScraper.Repositories.Contracts
|
|||
|
|
{
|
|||
|
|
public interface ISynonymsRepository : IRepositoryBase<Synonyms>
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|