jellyfin-server/Jellyfin.Data/Entities/Libraries/Library.cs

77 lines
2.0 KiB
C#
Raw Normal View History

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Interfaces;
2020-08-29 17:30:09 +00:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a library.
/// </summary>
public class Library : IHasConcurrencyToken
2020-05-02 21:56:05 +00:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Library"/> class.
2020-05-02 21:56:05 +00:00
/// </summary>
/// <param name="name">The name of the library.</param>
2020-05-02 21:56:05 +00:00
public Library(string name)
{
if (string.IsNullOrWhiteSpace(name))
2020-06-20 08:35:29 +00:00
{
throw new ArgumentNullException(nameof(name));
}
2020-05-02 21:56:05 +00:00
Name = name;
2020-05-02 21:56:05 +00:00
}
/// <summary>
/// Initializes a new instance of the <see cref="Library"/> class.
2020-05-02 21:56:05 +00:00
/// </summary>
/// <remarks>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </remarks>
protected Library()
2020-05-02 21:56:05 +00:00
{
}
/// <summary>
/// Gets or sets the id.
2020-05-02 21:56:05 +00:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
2020-05-02 21:56:05 +00:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; protected set; }
2020-06-15 21:43:52 +00:00
2020-05-02 21:56:05 +00:00
/// <summary>
/// Gets or sets the name.
2020-05-02 21:56:05 +00:00
/// </summary>
/// <remarks>
/// Required, Max length = 128.
/// </remarks>
[Required]
[MaxLength(128)]
[StringLength(128)]
public string Name { get; set; }
2020-05-02 21:56:05 +00:00
/// <summary>
/// Gets or sets the root path of the library.
2020-05-02 21:56:05 +00:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-05-02 21:56:05 +00:00
[Required]
public string Path { get; set; }
2020-05-02 21:56:05 +00:00
/// <inheritdoc />
2020-05-02 21:56:05 +00:00
[ConcurrencyCheck]
public uint RowVersion { get; set; }
/// <inheritdoc />
2020-05-02 21:56:05 +00:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}