Skip to content

Commit

Permalink
Merge pull request #16 from tacobell1896/feat/add-create-datetime
Browse files Browse the repository at this point in the history
change date to datetime on note object
  • Loading branch information
tacobell1896 authored Jun 7, 2024
2 parents cd758a4 + 42d5dc0 commit b0825d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Models/SavePointNote.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class SavePointNote
{
public int SavePointNoteId { get; set; }
public string? Note { get; set; }
public DateOnly NoteDate { get; set; }
public DateTime NoteDate { get; set; }
public int SavePointGameId { get; set; }
public SavePointGame? SavePointGame { get; set; }
}
Expand Down
2 changes: 1 addition & 1 deletion src/Models/SavePointNoteDTO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class SavePointNoteDTO
{
public int SavePointNoteId { get; set; }
public string? Note { get; set; }
public DateOnly NoteDate { get; set; }
public DateTime NoteDate { get; set; }
public int SavePointGameId { get; set; }
public SavePointGame? SavePointGame { get; set; }
}

0 comments on commit b0825d3

Please sign in to comment.