blob: 57d28755ad42b555b84a67e818c6f62732d16fc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#nullable disable
namespace StardewModdingAPI.Web.Framework.LogParsing.Models
{
/// <summary>A parsed log message.</summary>
public class LogMessage
{
/*********
** Accessors
*********/
/// <summary>The local time when the log was posted.</summary>
public string Time { get; set; }
/// <summary>The log level.</summary>
public LogLevel Level { get; set; }
/// <summary>The screen ID in split-screen mode.</summary>
public int ScreenId { get; set; }
/// <summary>The mod name.</summary>
public string Mod { get; set; }
/// <summary>The log text.</summary>
public string Text { get; set; }
/// <summary>The number of times this message was repeated consecutively.</summary>
public int Repeated { get; set; }
/// <summary>The section that this log message belongs to.</summary>
public LogSection? Section { get; set; }
/// <summary>Whether this message is the first one of its section.</summary>
public bool IsStartOfSection { get; set; }
}
}
|