20 lines
394 B
C#
20 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Application.ViewModel
|
|
{
|
|
public class AddTaskLesionAnswerFromLastTaskInDto
|
|
{
|
|
public Guid VisitTaskId { get; set; }
|
|
}
|
|
|
|
|
|
public class AddTaskLesionAnswerFromLastTaskOutDto
|
|
{
|
|
public bool IsBaseLine { get; set; }
|
|
}
|
|
}
|