fix(API): standardized DTO namespaces

This commit is contained in:
REDCODE
2024-11-18 21:31:45 +01:00
parent 067af4ab37
commit 4b2f117e3c
6 changed files with 4 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
using Lactose.Dtos;
using Lactose.Dtos.Asset;
using Lactose.Mapper;
using Lactose.Models;

View File

@@ -1,4 +1,5 @@
using Lactose.Dtos;
using Lactose.Dtos.User;
using Lactose.Models;
using Lactose.Repositories;
using Lactose.Services;

View File

@@ -1,5 +1,3 @@
using Lactose.Controllers;
namespace Lactose.Dtos.Album;
public class AlbumFullDto : AlbumPreviewDto {

View File

@@ -1,4 +1,4 @@
namespace Lactose.Controllers;
namespace Lactose.Dtos;
public class BulkDto<TDto> {
public List<Guid> Ids { get; set; } = [];

View File

@@ -1,6 +1,4 @@
using Lactose.Types;
namespace Lactose.Dtos;
namespace Lactose.Dtos.User;
public class UserRegisterDto {
public string Username { get; set; } = string.Empty;

View File

@@ -1,4 +1,3 @@
using Lactose.Dtos;
using Lactose.Dtos.User;
using Lactose.Models;