9 lines
No EOL
199 B
C#
9 lines
No EOL
199 B
C#
namespace MossyUpdater.Services
|
|
{
|
|
public interface IQuotesService
|
|
{
|
|
string GetRandomQuote();
|
|
string GetNextQuote();
|
|
IEnumerable<string> GetAllQuotes();
|
|
}
|
|
} |