using System;
namespace API.Entities;
public class FolderPath
{
public int Id { get; set; }
public string Path { get; set; }
///
/// Used when scanning to see if we can skip if nothing has changed
///
/// Time stored in UTC
public DateTime LastScanned { get; set; }
// Relationship
public Library Library { get; set; }
public int LibraryId { get; set; }
}