2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2020-08-30 22:50:54 +00:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using Jellyfin.Data.Enums;
|
|
|
|
using Jellyfin.Data.Interfaces;
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-29 17:30:09 +00:00
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An entity representing artwork.
|
|
|
|
/// </summary>
|
|
|
|
public class Artwork : IHasConcurrencyToken
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="Artwork"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
/// <param name="kind">The kind of art.</param>
|
2021-03-06 21:17:19 +00:00
|
|
|
public Artwork(string path, ArtKind kind)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2022-10-13 17:08:00 +00:00
|
|
|
ArgumentException.ThrowIfNullOrEmpty(path);
|
2020-06-20 08:35:29 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
Path = path;
|
|
|
|
Kind = kind;
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets the id.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Identity, Indexed, Required.
|
2020-08-30 22:50:54 +00:00
|
|
|
/// </remarks>
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2021-03-17 23:08:11 +00:00
|
|
|
public int Id { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the path.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required, Max length = 65535.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(65535)]
|
|
|
|
[StringLength(65535)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public string Path { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the kind of artwork.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required.
|
|
|
|
/// </remarks>
|
|
|
|
public ArtKind Kind { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-02 21:56:05 +00:00
|
|
|
[ConcurrencyCheck]
|
2021-03-17 23:08:11 +00:00
|
|
|
public uint RowVersion { get; private set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-02 21:56:05 +00:00
|
|
|
public void OnSavingChanges()
|
|
|
|
{
|
|
|
|
RowVersion++;
|
|
|
|
}
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|