diff options
author | crupest <crupest@outlook.com> | 2020-03-10 15:46:59 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-03-10 15:46:59 +0800 |
commit | 52c59d7cd949ee6ccc89fbb25231666e1e589fe2 (patch) | |
tree | 65b925263102aa29f4c58b12277e0c1c1368fe1f /Timeline/Controllers/UserAvatarController.cs | |
parent | d33300f976f3a237195e9de4d691ce1ee4b3d345 (diff) | |
download | timeline-52c59d7cd949ee6ccc89fbb25231666e1e589fe2.tar.gz timeline-52c59d7cd949ee6ccc89fbb25231666e1e589fe2.tar.bz2 timeline-52c59d7cd949ee6ccc89fbb25231666e1e589fe2.zip |
Revert namespace name change.
Diffstat (limited to 'Timeline/Controllers/UserAvatarController.cs')
-rw-r--r-- | Timeline/Controllers/UserAvatarController.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Timeline/Controllers/UserAvatarController.cs b/Timeline/Controllers/UserAvatarController.cs index 089cef94..f4f3db3e 100644 --- a/Timeline/Controllers/UserAvatarController.cs +++ b/Timeline/Controllers/UserAvatarController.cs @@ -6,15 +6,15 @@ using Microsoft.Net.Http.Headers; using System;
using System.Linq;
using System.Threading.Tasks;
-using TimelineApp.Auth;
-using TimelineApp.Filters;
-using TimelineApp.Helpers;
-using TimelineApp.Models.Http;
-using TimelineApp.Models.Validation;
-using TimelineApp.Services;
-using static TimelineApp.Resources.Controllers.UserAvatarController;
-
-namespace TimelineApp.Controllers
+using Timeline.Auth;
+using Timeline.Filters;
+using Timeline.Helpers;
+using Timeline.Models.Http;
+using Timeline.Models.Validation;
+using Timeline.Services;
+using static Timeline.Resources.Controllers.UserAvatarController;
+
+namespace Timeline.Controllers
{
[ApiController]
public class UserAvatarController : Controller
|