mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
18 lines
289 B
C#
18 lines
289 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Enums
|
|
{
|
|
public enum CommonSongProperty
|
|
{
|
|
Title,
|
|
Album,
|
|
Artist,
|
|
Folder,
|
|
M3UFilePath
|
|
}
|
|
}
|