Skip to content

Commit

Permalink
Enable modeling of remaining session duration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcitectus committed Jun 22, 2016
1 parent 017e293 commit 4f7321c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
Binary file modified lib.intermediate/Sanderling.Interface.dll
Binary file not shown.
Binary file modified lib.intermediate/Sanderling.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ namespace Sanderling.Interface.MemoryStruct
/// </summary>
public interface IMemoryMeasurement
{
int? SessionDurationRemaining { get; }

string UserDefaultLocaleName { get; }

string VersionString { get; }
Expand Down Expand Up @@ -98,6 +100,8 @@ public interface IMemoryMeasurement

public class MemoryMeasurement : IMemoryMeasurement, ICloneable
{
public int? SessionDurationRemaining { set; get; }

public string UserDefaultLocaleName { set; get; }

public string VersionString { set; get; }
Expand Down
2 changes: 2 additions & 0 deletions src/Sanderling/Sanderling/Parse/MemoryMeasurement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ public MemoryMeasurement(MemoryStruct.IMemoryMeasurement raw)

public partial class MemoryMeasurement : IMemoryMeasurement
{
public int? SessionDurationRemaining => Raw?.SessionDurationRemaining;

public string UserDefaultLocaleName => Raw?.UserDefaultLocaleName;

public MemoryStruct.IInSpaceBracket[] InflightBracket => Raw?.InflightBracket;
Expand Down

0 comments on commit 4f7321c

Please sign in to comment.