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 | aa6b13ad8d7713087c635d52817f469c1fab8c45 (patch) | |
tree | 65b925263102aa29f4c58b12277e0c1c1368fe1f /Timeline/Models/Http | |
parent | 2f9da0048893aacb7ffbfcae50ea5e0c8f840dbc (diff) | |
download | timeline-aa6b13ad8d7713087c635d52817f469c1fab8c45.tar.gz timeline-aa6b13ad8d7713087c635d52817f469c1fab8c45.tar.bz2 timeline-aa6b13ad8d7713087c635d52817f469c1fab8c45.zip |
Revert namespace name change.
Diffstat (limited to 'Timeline/Models/Http')
-rw-r--r-- | Timeline/Models/Http/Common.cs | 4 | ||||
-rw-r--r-- | Timeline/Models/Http/ErrorResponse.cs | 4 | ||||
-rw-r--r-- | Timeline/Models/Http/Timeline.cs | 4 | ||||
-rw-r--r-- | Timeline/Models/Http/TimelineController.cs | 4 | ||||
-rw-r--r-- | Timeline/Models/Http/TokenController.cs | 2 | ||||
-rw-r--r-- | Timeline/Models/Http/UserController.cs | 6 | ||||
-rw-r--r-- | Timeline/Models/Http/UserInfo.cs | 4 |
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
{
|