2020-09-01 13:35:12 +00:00
|
|
|
|
using System;
|
2020-05-13 02:10:35 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2020-05-20 02:12:03 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2020-05-13 02:10:35 +00:00
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Data.Entities
|
|
|
|
|
{
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// An entity representing an image.
|
|
|
|
|
/// </summary>
|
2020-05-13 02:10:35 +00:00
|
|
|
|
public class ImageInfo
|
|
|
|
|
{
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ImageInfo"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The path.</param>
|
2020-05-20 16:09:52 +00:00
|
|
|
|
public ImageInfo(string path)
|
2020-05-13 02:10:35 +00:00
|
|
|
|
{
|
|
|
|
|
Path = path;
|
|
|
|
|
LastModified = DateTime.UtcNow;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
|
/// Gets the id.
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Identity, Indexed, Required.
|
|
|
|
|
/// </remarks>
|
2020-05-20 02:12:03 +00:00
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2021-03-17 23:08:11 +00:00
|
|
|
|
public int Id { get; private set; }
|
2020-05-13 02:10:35 +00:00
|
|
|
|
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
|
/// Gets the user id.
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// </summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
|
public Guid? UserId { get; private set; }
|
2020-06-13 20:38:17 +00:00
|
|
|
|
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the path of the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Required.
|
|
|
|
|
/// </remarks>
|
2020-05-20 16:09:52 +00:00
|
|
|
|
[MaxLength(512)]
|
|
|
|
|
[StringLength(512)]
|
2020-05-13 02:10:35 +00:00
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
2020-09-01 13:35:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the date last modified.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Required.
|
|
|
|
|
/// </remarks>
|
2020-05-13 02:10:35 +00:00
|
|
|
|
public DateTime LastModified { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|