Files

18 lines
417 B
C#
Raw Permalink Normal View History

2024-01-23 02:56:26 +08:00
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();
}
}