WebApi + ClientApp, GraphQL, Reflection
This commit is contained in:
8
Reflection/LottoInterfaces/ILotto.cs
Normal file
8
Reflection/LottoInterfaces/ILotto.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LottoInterfaces;
|
||||
|
||||
public interface ILotto
|
||||
{
|
||||
List<int> DrawNumbers(bool sort);
|
||||
}
|
||||
8
Reflection/LottoInterfaces/LottoInterfaces.csproj
Normal file
8
Reflection/LottoInterfaces/LottoInterfaces.csproj
Normal file
@@ -0,0 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user