mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
19 lines
455 B
C#
19 lines
455 B
C#
|
|
using System;
|
|
|
|
namespace API.Entities
|
|
{
|
|
public class FolderPath
|
|
{
|
|
public int Id { get; set; }
|
|
public string Path { get; set; }
|
|
/// <summary>
|
|
/// Used when scanning to see if we can skip if nothing has changed.
|
|
/// </summary>
|
|
public DateTime LastScanned { get; set; }
|
|
|
|
// Relationship
|
|
public Library Library { get; set; }
|
|
public int LibraryId { get; set; }
|
|
}
|
|
} |