Files
YarikStudio/AssetStudio/AssetEntry.cs
2023-01-06 22:33:59 +04:00

12 lines
287 B
C#

namespace AssetStudio
{
public class AssetEntry
{
public string Name { get; set; }
public string Container { get; set; }
public string Source { get; set; }
public long PathID { get; set; }
public ClassIDType Type { get; set; }
}
}