From f8fb2da4bc2079a091a7ba3e7349850eee4b9da3 Mon Sep 17 00:00:00 2001 From: NikitaOnianov Date: Fri, 18 Oct 2024 13:20:54 +0300 Subject: [PATCH] add Demo/UI/GroupConsole.cs and Demo/Domain/UseCase/GroupUseCase.cs --- Demo/Domain/UseCase/GroupUseCase.cs | 12 ++++++++++++ Demo/UI/GroupConsole.cs | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Demo/Domain/UseCase/GroupUseCase.cs create mode 100644 Demo/UI/GroupConsole.cs diff --git a/Demo/Domain/UseCase/GroupUseCase.cs b/Demo/Domain/UseCase/GroupUseCase.cs new file mode 100644 index 0000000..414853a --- /dev/null +++ b/Demo/Domain/UseCase/GroupUseCase.cs @@ -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 + { + } +} diff --git a/Demo/UI/GroupConsole.cs b/Demo/UI/GroupConsole.cs new file mode 100644 index 0000000..1ad9000 --- /dev/null +++ b/Demo/UI/GroupConsole.cs @@ -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 + { + } +}