You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
730 B
33 lines
730 B
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Jellyfin.Data.Entities
|
|
{
|
|
public class ImageInfo
|
|
{
|
|
public ImageInfo(string path)
|
|
{
|
|
Path = path;
|
|
LastModified = DateTime.UtcNow;
|
|
}
|
|
|
|
[Key]
|
|
[Required]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; protected set; }
|
|
|
|
public Guid? UserId { get; protected set; }
|
|
|
|
[Required]
|
|
[MaxLength(512)]
|
|
[StringLength(512)]
|
|
public string Path { get; set; }
|
|
|
|
[Required]
|
|
public DateTime LastModified { get; set; }
|
|
}
|
|
}
|