15 lines
267 B
C#
15 lines
267 B
C#
namespace AxCopilot.ViewModels;
|
|
|
|
public class FavoriteStatItem
|
|
{
|
|
public int Rank { get; init; }
|
|
|
|
public string Name { get; init; } = "";
|
|
|
|
public string Path { get; init; } = "";
|
|
|
|
public string Icon { get; init; } = "\ue8b7";
|
|
|
|
public bool Exists { get; init; }
|
|
}
|