Kavita/API/Entities/LibraryExcludedGlob.cs
2023-11-19 10:15:32 -08:00

11 lines
229 B
C#

namespace API.Entities;
public class LibraryExcludePattern
{
public int Id { get; set; }
public string Pattern { get; set; }
public int LibraryId { get; set; }
public Library Library { get; set; } = null!;
}