jellyfin/Jellyfin.Data/Entities/Libraries/MediaFileStream.cs

51 lines
1.4 KiB
C#
Raw Normal View History

2021-03-08 23:57:38 -05:00
#pragma warning disable CA1711 // Identifiers should not have incorrect suffix
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Interfaces;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a stream in a media file.
/// </summary>
public class MediaFileStream : IHasConcurrencyToken
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="MediaFileStream"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="streamNumber">The number of this stream.</param>
public MediaFileStream(int streamNumber)
2020-05-02 17:56:05 -04:00
{
StreamNumber = streamNumber;
2020-05-02 17:56:05 -04:00
}
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets the id.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
2020-05-02 17:56:05 -04:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2021-03-17 19:08:11 -04:00
public int Id { get; private set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the stream number.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public int StreamNumber { get; set; }
2020-05-02 17:56:05 -04:00
/// <inheritdoc />
2020-05-02 17:56:05 -04:00
[ConcurrencyCheck]
2021-03-17 19:08:11 -04:00
public uint RowVersion { get; private set; }
/// <inheritdoc />
2020-05-02 17:56:05 -04:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}