Skip to content

Commit 14f198e

Browse files
committed
Move service interfaces to services folder.
1 parent 8b8012c commit 14f198e

File tree

10 files changed

+10
-3
lines changed

10 files changed

+10
-3
lines changed

samples/Unity.Mvvm.ToDoList/Assets/Scripts/App.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Interfaces;
1+
using Interfaces.Services;
22
using UnityEngine;
33

44
public class App : MonoBehaviour

samples/Unity.Mvvm.ToDoList/Assets/Scripts/AppContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Collections.Generic;using Interfaces;
3+
using Interfaces.Services;
34
using Services;
45
using UnityEngine;
56
using UnityEngine.UIElements;

samples/Unity.Mvvm.ToDoList/Assets/Scripts/Interfaces/Services.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samples/Unity.Mvvm.ToDoList/Assets/Scripts/Interfaces/IDataStoreService.cs renamed to samples/Unity.Mvvm.ToDoList/Assets/Scripts/Interfaces/Services/IDataStoreService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Interfaces
1+
namespace Interfaces.Services
22
{
33
public interface IDataStoreService
44
{

samples/Unity.Mvvm.ToDoList/Assets/Scripts/Interfaces/IDialogsService.cs renamed to samples/Unity.Mvvm.ToDoList/Assets/Scripts/Interfaces/Services/IDialogsService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Cysharp.Threading.Tasks;
22

3-
namespace Interfaces
3+
namespace Interfaces.Services
44
{
55
public interface IDialogsService
66
{

samples/Unity.Mvvm.ToDoList/Assets/Scripts/Services/DataStoreService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Xml.Serialization;
66
using Cysharp.Threading.Tasks;
77
using Interfaces;
8+
using Interfaces.Services;
89
using Unity.VisualScripting;
910
using UnityEngine;
1011
using ViewModels;

samples/Unity.Mvvm.ToDoList/Assets/Scripts/Services/DialogsService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using Cysharp.Threading.Tasks;
22
using Interfaces;
3+
using Interfaces.Services;
34
using Views;
45

56
namespace Services

samples/Unity.Mvvm.ToDoList/Assets/Scripts/ViewModels/MainViewModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using System.Threading;
77
using Cysharp.Threading.Tasks;
88
using Interfaces;
9+
using Interfaces.Services;
910
using UnityMvvmToolkit.Core;
1011
using UnityMvvmToolkit.UniTask;
1112
using UnityMvvmToolkit.UniTask.Interfaces;

0 commit comments

Comments
 (0)