Files
predavanja/Reflection/LottoInterfaces/ILotto.cs
2026-05-10 23:39:55 +02:00

9 lines
130 B
C#

using System.Collections.Generic;
namespace LottoInterfaces;
public interface ILotto
{
List<int> DrawNumbers(bool sort);
}