Files
CortexCore fd39099061 init
2024-01-23 02:56:26 +08:00

18 lines
417 B
C#

using System;
using System.Collections.Generic;
namespace BITKit
{
public record PlayableInfo
{
public string Name;
public string Description;
public DateTime CreateTime;
public DateTime CompleteTime;
public string FileName;
public string Icon;
public List<string> Tags = new();
public Dictionary<string, string> Properties = new();
}
}