Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angel-venchev-toptal/e42431ff856088619e72798e9c9b5393 to your computer and use it in GitHub Desktop.
Save angel-venchev-toptal/e42431ff856088619e72798e9c9b5393 to your computer and use it in GitHub Desktop.
namespace LifeDrive.Core.DTOs.Feed
{
public class CompletedCardDto
{
public int Id { get; set; }
public CompletedQuestionDto CompletedQuestion { get; set; }
public CompletedFeedTaskDto CompletedTask { get; set; }
}
}
using System.Collections.Generic;
namespace LifeDrive.Core.DTOs.Feed
{
public class CompletedQuestionDto
{
public bool? BinaryResponse { get; set; }
public int? RatingResponse { get; set; }
public List<int> SelectedOptionResponseIds { get; set; }
public string TemplateDataResponse { get; set; }
}
}
namespace LifeDrive.Core.DTOs.Feed
{
public class CompletedFeedTaskDto
{
public bool IsDone { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment