Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ezraroi committed Jun 21, 2024
2 parents 546f3ff + 5963643 commit 07f0778
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Mundialito/Models/GamesModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,14 @@ public class NewGameModel

[JsonPropertyName("IntegrationsData")]
public Dictionary<string, string>? IntegrationsData { get; set; }
[JsonPropertyName("CloseTime")]
public DateTime CloseTime
{
get
{
return Date.Subtract(TimeSpan.FromMinutes(30));
}
}
}

public class PutGameModel
Expand Down Expand Up @@ -230,6 +238,14 @@ public PutGameModelResult(Game game, DateTime now) : base(game)

[JsonPropertyName("Mark")]
public string Mark { get; private set; }
[JsonPropertyName("CloseTime")]
public DateTime CloseTime
{
get
{
return Date.Subtract(TimeSpan.FromMinutes(30));
}
}

}

Expand Down

0 comments on commit 07f0778

Please sign in to comment.