aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Http
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-03-10 15:46:59 +0800
committercrupest <crupest@outlook.com>2020-03-10 15:46:59 +0800
commit52c59d7cd949ee6ccc89fbb25231666e1e589fe2 (patch)
tree65b925263102aa29f4c58b12277e0c1c1368fe1f /Timeline/Models/Http
parentd33300f976f3a237195e9de4d691ce1ee4b3d345 (diff)
downloadtimeline-52c59d7cd949ee6ccc89fbb25231666e1e589fe2.tar.gz
timeline-52c59d7cd949ee6ccc89fbb25231666e1e589fe2.tar.bz2
timeline-52c59d7cd949ee6ccc89fbb25231666e1e589fe2.zip
Revert namespace name change.
Diffstat (limited to 'Timeline/Models/Http')
-rw-r--r--Timeline/Models/Http/Common.cs4
-rw-r--r--Timeline/Models/Http/ErrorResponse.cs4
-rw-r--r--Timeline/Models/Http/Timeline.cs4
-rw-r--r--Timeline/Models/Http/TimelineController.cs4
-rw-r--r--Timeline/Models/Http/TokenController.cs2
-rw-r--r--Timeline/Models/Http/UserController.cs6
-rw-r--r--Timeline/Models/Http/UserInfo.cs4
7 files changed, 14 insertions, 14 deletions
diff --git a/Timeline/Models/Http/Common.cs b/Timeline/Models/Http/Common.cs
index f30fdb0d..a9fc8a79 100644
--- a/Timeline/Models/Http/Common.cs
+++ b/Timeline/Models/Http/Common.cs
@@ -1,6 +1,6 @@
-using static TimelineApp.Resources.Models.Http.Common;
+using static Timeline.Resources.Models.Http.Common;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public class CommonResponse
{
diff --git a/Timeline/Models/Http/ErrorResponse.cs b/Timeline/Models/Http/ErrorResponse.cs
index d6cb5ca0..9f7e70e1 100644
--- a/Timeline/Models/Http/ErrorResponse.cs
+++ b/Timeline/Models/Http/ErrorResponse.cs
@@ -1,7 +1,7 @@

-using static TimelineApp.Resources.Messages;
+using static Timeline.Resources.Messages;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public static class ErrorResponse
diff --git a/Timeline/Models/Http/Timeline.cs b/Timeline/Models/Http/Timeline.cs
index 637a775d..55c3a3bf 100644
--- a/Timeline/Models/Http/Timeline.cs
+++ b/Timeline/Models/Http/Timeline.cs
@@ -4,9 +4,9 @@ using Microsoft.AspNetCore.Mvc.Infrastructure;
using Microsoft.AspNetCore.Mvc.Routing;
using System;
using System.Collections.Generic;
-using TimelineApp.Controllers;
+using Timeline.Controllers;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public class TimelinePostContentInfo
{
diff --git a/Timeline/Models/Http/TimelineController.cs b/Timeline/Models/Http/TimelineController.cs
index b389c549..ce5f3b98 100644
--- a/Timeline/Models/Http/TimelineController.cs
+++ b/Timeline/Models/Http/TimelineController.cs
@@ -1,8 +1,8 @@
using System;
using System.ComponentModel.DataAnnotations;
-using TimelineApp.Models.Validation;
+using Timeline.Models.Validation;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public class TimelinePostCreateRequestContent
{
diff --git a/Timeline/Models/Http/TokenController.cs b/Timeline/Models/Http/TokenController.cs
index 3376fb61..ea8b59ed 100644
--- a/Timeline/Models/Http/TokenController.cs
+++ b/Timeline/Models/Http/TokenController.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public class CreateTokenRequest
{
diff --git a/Timeline/Models/Http/UserController.cs b/Timeline/Models/Http/UserController.cs
index c024c757..e4c95cbd 100644
--- a/Timeline/Models/Http/UserController.cs
+++ b/Timeline/Models/Http/UserController.cs
@@ -1,9 +1,9 @@
using AutoMapper;
using System.ComponentModel.DataAnnotations;
-using TimelineApp.Models.Validation;
-using TimelineApp.Services;
+using Timeline.Models.Validation;
+using Timeline.Services;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public class UserPatchRequest
{
diff --git a/Timeline/Models/Http/UserInfo.cs b/Timeline/Models/Http/UserInfo.cs
index fcbbe7c9..4f887549 100644
--- a/Timeline/Models/Http/UserInfo.cs
+++ b/Timeline/Models/Http/UserInfo.cs
@@ -3,9 +3,9 @@ using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Infrastructure;
using Microsoft.AspNetCore.Mvc.Routing;
using System;
-using TimelineApp.Controllers;
+using Timeline.Controllers;
-namespace TimelineApp.Models.Http
+namespace Timeline.Models.Http
{
public class UserInfo
{