e60f612f95
[iw4script] reworked balance to balance based on performance rating [stats] log penalty context to database
19 lines
520 B
C#
19 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Dtos
|
|
{
|
|
public class ProfileMeta : SharedInfo
|
|
{
|
|
public DateTime When { get; set; }
|
|
public string WhenString => Utilities.GetTimePassed(When, false);
|
|
public string Key { get; set; }
|
|
public dynamic Value { get; set; }
|
|
public string Extra { get; set; }
|
|
public virtual string Class => Value.GetType().ToString();
|
|
}
|
|
}
|