mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
23 lines
474 B
C#
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; }
|
|
}
|
|
}
|