sdraw_mods_cvr/ml_pah/AvatarEntry.cs
2025-08-15 06:49:24 -05:00

14 lines
260 B
C#

using System;
namespace ml_pah
{
[Serializable]
class AvatarEntry
{
public string m_id;
public string m_name;
public string m_imageUrl;
public DateTime m_lastUsageDate;
public bool m_cached = false;
}
}