mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
30 lines
678 B
C#
30 lines
678 B
C#
using System;
|
|
using proto;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class MailCacheKey
|
|
{
|
|
public MailType type = (MailType)3;
|
|
|
|
public int id;
|
|
|
|
public DateTime time = DateTime.Now;
|
|
|
|
public MailCacheKey(MailType type, int id, DateTime time)
|
|
{
|
|
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
|
|
//IL_0019: Unknown result type (might be due to invalid IL or missing references)
|
|
//IL_001a: Unknown result type (might be due to invalid IL or missing references)
|
|
this.type = type;
|
|
this.id = id;
|
|
this.time = time;
|
|
}
|
|
|
|
public MailCacheKey()
|
|
{
|
|
}//IL_0002: Unknown result type (might be due to invalid IL or missing references)
|
|
|
|
}
|
|
}
|