Kavita/API/Entities/FolderPath.cs
2020-12-17 11:27:19 -06:00

10 lines
234 B
C#

namespace API.Entities
{
public class FolderPath
{
public int Id { get; set; }
public string Path { get; set; }
public Library Library { get; set; }
public int LibraryId { get; set; }
}
}