add Demo/UI/GroupConsole.cs

and  Demo/Domain/UseCase/GroupUseCase.cs
This commit is contained in:
NikitaOnianov 2024-10-18 13:20:54 +03:00
parent 1af541d098
commit f8fb2da4bc
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Domain.UseCase
{
internal class GroupUseCase
{
}
}

12
Demo/UI/GroupConsole.cs Normal file
View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.UI
{
internal class GroupConsole
{
}
}