9 lines
217 B
C#
9 lines
217 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace salesbook.Shared.Core.Dto.JobProgress;
|
|
|
|
public class CRMJobProgressResponseDTO
|
|
{
|
|
[JsonPropertyName("steps")]
|
|
public List<CRMJobStepDTO> Steps { get; set; }
|
|
} |