From 52c59d7cd949ee6ccc89fbb25231666e1e589fe2 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 10 Mar 2020 15:46:59 +0800 Subject: Revert namespace name change. --- Timeline/Models/Http/Common.cs | 4 ++-- Timeline/Models/Http/ErrorResponse.cs | 4 ++-- Timeline/Models/Http/Timeline.cs | 4 ++-- Timeline/Models/Http/TimelineController.cs | 4 ++-- Timeline/Models/Http/TokenController.cs | 2 +- Timeline/Models/Http/UserController.cs | 6 +++--- Timeline/Models/Http/UserInfo.cs | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) (limited to 'Timeline/Models/Http') 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 { -- cgit v1.2.3