Lots of cleanup
This commit is contained in:
parent
bd5a1338c4
commit
077e5f798a
28 changed files with 80 additions and 55 deletions
|
@ -1,6 +1,6 @@
|
|||
using System.ComponentModel;
|
||||
|
||||
namespace API.Entities
|
||||
namespace API.Entities.Enums
|
||||
{
|
||||
public enum LibraryType
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System.ComponentModel;
|
||||
|
||||
namespace API.Entities
|
||||
namespace API.Entities.Enums
|
||||
{
|
||||
public enum MangaFormat
|
||||
{
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
namespace API.Entities
|
||||
namespace API.Entities.Enums
|
||||
{
|
||||
public enum ServerSettingKey
|
||||
{
|
||||
TaskScan = 0,
|
||||
CacheDirectory = 1,
|
||||
TaskBackup = 2,
|
||||
LoggingLevel = 3
|
||||
LoggingLevel = 3,
|
||||
Port = 4
|
||||
}
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using API.Entities.Enums;
|
||||
using API.Entities.Interfaces;
|
||||
|
||||
namespace API.Entities
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
|
||||
using API.Entities.Enums;
|
||||
|
||||
namespace API.Entities
|
||||
{
|
||||
public class MangaFile
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using API.Entities.Enums;
|
||||
using API.Entities.Interfaces;
|
||||
|
||||
namespace API.Entities
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue