Skip to content

Commit

Permalink
fix: correct id type for response
Browse files Browse the repository at this point in the history
  • Loading branch information
elementh committed May 22, 2023
1 parent 1831c28 commit a9e50e1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;

namespace Thankies.Infrastructure.Contract.Model
{
public class GratitudeResponse
{
[JsonPropertyName("id")]
public int Id { get; set; }
public Guid Id { get; set; }
[JsonPropertyName("text")]
public string Text { get; set; }

Expand Down

0 comments on commit a9e50e1

Please sign in to comment.