mirror of
https://github.com/SDraw/ml_mods_cvr.git
synced 2026-05-03 17:07:00 +00:00
14 lines
260 B
C#
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;
|
|
}
|
|
}
|