12 lines
287 B
C#
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; }
|
|
}
|
|
}
|