MossyUpdater/Services/IQuotesService.cs
2025-05-31 00:06:18 +02:00

9 lines
No EOL
199 B
C#

namespace MossyUpdater.Services
{
public interface IQuotesService
{
string GetRandomQuote();
string GetNextQuote();
IEnumerable<string> GetAllQuotes();
}
}