| | 1 | | using System; |
| | 2 | | using System.ComponentModel.DataAnnotations; |
| | 3 | | using System.ComponentModel.DataAnnotations.Schema; |
| | 4 | | using Jellyfin.Database.Implementations.Interfaces; |
| | 5 | |
|
| | 6 | | namespace Jellyfin.Database.Implementations.Entities.Libraries |
| | 7 | | { |
| | 8 | | /// <summary> |
| | 9 | | /// An entity representing a metadata provider. |
| | 10 | | /// </summary> |
| | 11 | | public class MetadataProvider : IHasConcurrencyToken |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Initializes a new instance of the <see cref="MetadataProvider"/> class. |
| | 15 | | /// </summary> |
| | 16 | | /// <param name="name">The name of the metadata provider.</param> |
| | 17 | | public MetadataProvider(string name) |
| | 18 | | { |
| 0 | 19 | | ArgumentException.ThrowIfNullOrEmpty(name); |
| | 20 | |
|
| 0 | 21 | | Name = name; |
| 0 | 22 | | } |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// Gets the id. |
| | 26 | | /// </summary> |
| | 27 | | /// <remarks> |
| | 28 | | /// Identity, Indexed, Required. |
| | 29 | | /// </remarks> |
| | 30 | | [DatabaseGenerated(DatabaseGeneratedOption.Identity)] |
| | 31 | | public int Id { get; private set; } |
| | 32 | |
|
| | 33 | | /// <summary> |
| | 34 | | /// Gets or sets the name. |
| | 35 | | /// </summary> |
| | 36 | | /// <remarks> |
| | 37 | | /// Required, Max length = 1024. |
| | 38 | | /// </remarks> |
| | 39 | | [MaxLength(1024)] |
| | 40 | | [StringLength(1024)] |
| | 41 | | public string Name { get; set; } |
| | 42 | |
|
| | 43 | | /// <inheritdoc /> |
| | 44 | | [ConcurrencyCheck] |
| | 45 | | public uint RowVersion { get; private set; } |
| | 46 | |
|
| | 47 | | /// <inheritdoc /> |
| | 48 | | public void OnSavingChanges() |
| | 49 | | { |
| 0 | 50 | | RowVersion++; |
| 0 | 51 | | } |
| | 52 | | } |
| | 53 | | } |