Updating project to correct the following errors:
1. Using directive should appear within a namespace declaration 2. Use trailing comma in multi-line initializers
This commit is contained in:
@@ -2,19 +2,18 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Jellyfin.Database.Implementations.Entities.Libraries;
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces
|
||||
/// <summary>
|
||||
/// An interface abstracting an entity that has artwork.
|
||||
/// </summary>
|
||||
public interface IHasArtwork
|
||||
{
|
||||
/// <summary>
|
||||
/// An interface abstracting an entity that has artwork.
|
||||
/// Gets a collection containing this entity's artwork.
|
||||
/// </summary>
|
||||
public interface IHasArtwork
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets a collection containing this entity's artwork.
|
||||
/// </summary>
|
||||
ICollection<Artwork> Artwork { get; }
|
||||
}
|
||||
ICollection<Artwork> Artwork { get; }
|
||||
}
|
||||
|
||||
@@ -2,19 +2,18 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Jellyfin.Database.Implementations.Entities.Libraries;
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces
|
||||
/// <summary>
|
||||
/// An abstraction representing an entity that has companies.
|
||||
/// </summary>
|
||||
public interface IHasCompanies
|
||||
{
|
||||
/// <summary>
|
||||
/// An abstraction representing an entity that has companies.
|
||||
/// Gets a collection containing this entity's companies.
|
||||
/// </summary>
|
||||
public interface IHasCompanies
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets a collection containing this entity's companies.
|
||||
/// </summary>
|
||||
ICollection<Company> Companies { get; }
|
||||
}
|
||||
ICollection<Company> Companies { get; }
|
||||
}
|
||||
|
||||
+2
-2
@@ -2,11 +2,11 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Jellyfin.Database.Implementations.Entities;
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces;
|
||||
|
||||
/// <summary>
|
||||
/// An abstraction representing an entity that has permissions.
|
||||
/// </summary>
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Jellyfin.Database.Implementations.Entities.Libraries;
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Interfaces;
|
||||
|
||||
/// <summary>
|
||||
/// An abstraction representing an entity that has releases.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user