mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 10:29:22 +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;
|
|
}
|
|
}
|