mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 15:33:03 +03:00
17 lines
423 B
C#
17 lines
423 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using Jellyfin.Data.Entities.Libraries;
|
||
|
|
|
||
|
|
namespace Jellyfin.Data.Interfaces
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// An abstraction representing an entity that has companies.
|
||
|
|
/// </summary>
|
||
|
|
public interface IHasCompanies
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets a collection containing this entity's companies.
|
||
|
|
/// </summary>
|
||
|
|
ICollection<Company> Companies { get; }
|
||
|
|
}
|
||
|
|
}
|