public TaskResponse(bool success, string message, TaskReminderDTO taskReminderDTO) : base(success, message) { TaskReminderDTO = taskReminderDTO; }
public TaskResponse(TaskReminderDTO taskReminderDTO) : this(true, string.Empty, taskReminderDTO) { }