Files
BetterLyrics/BetterLyrics.WinUI3/BetterLyrics.WinUI3/Models/FileCacheEntity.cs
2025-12-25 13:44:43 -05:00

23 lines
474 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.Text;
namespace BetterLyrics.WinUI3.Models
{
[Table("FileCache")]
public class FileCacheEntity : UnifiedFileItem
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
[Indexed]
public string ParentPath { get; set; }
[Indexed(Unique = true)]
public string FullPath { get; set; }
public string Title { get; set; }
}
}