mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-06-01 03:08:45 +00:00
81 lines
2.2 KiB
C#
81 lines
2.2 KiB
C#
// Kyoo - A portable and vast media library solution.
|
|
// Copyright (c) Kyoo.
|
|
//
|
|
// See AUTHORS.md and LICENSE file in the project root for full license information.
|
|
//
|
|
// Kyoo is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// Kyoo is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Kyoo. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
using Kyoo.Abstractions.Controllers;
|
|
using Kyoo.Utils;
|
|
|
|
namespace Kyoo.Abstractions.Models;
|
|
|
|
/// <summary>
|
|
/// A studio that make shows.
|
|
/// </summary>
|
|
public class Studio : IQuery, IResource, IMetadata
|
|
{
|
|
public static Sort DefaultSort => new Sort<Studio>.By(x => x.Name);
|
|
|
|
/// <inheritdoc />
|
|
public Guid Id { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
[MaxLength(256)]
|
|
public string Slug { get; set; }
|
|
|
|
/// <summary>
|
|
/// The name of this studio.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// The list of shows that are made by this studio.
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
public ICollection<Show>? Shows { get; set; }
|
|
|
|
/// <summary>
|
|
/// The list of movies that are made by this studio.
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
public ICollection<Movie>? Movies { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public Dictionary<string, MetadataId> ExternalId { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Create a new, empty, <see cref="Studio"/>.
|
|
/// </summary>
|
|
public Studio() { }
|
|
|
|
/// <summary>
|
|
/// Create a new <see cref="Studio"/> with a specific name, the slug is calculated automatically.
|
|
/// </summary>
|
|
/// <param name="name">The name of the studio.</param>
|
|
[JsonConstructor]
|
|
public Studio(string name)
|
|
{
|
|
if (name != null)
|
|
{
|
|
Slug = Utility.ToSlug(name);
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|