generated from Integry/Template_NetMauiBlazorHybrid
15 lines
355 B
C#
15 lines
355 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace salesbook.Shared.Core.Dto.JobProgress;
|
|
|
|
public class CRMJobStepDTO
|
|
{
|
|
[JsonPropertyName("stepName")]
|
|
public string? StepName { get; set; }
|
|
|
|
[JsonPropertyName("status")]
|
|
public CRMJobStatusDTO? Status { get; set; }
|
|
|
|
[JsonPropertyName("date")]
|
|
public DateTime? Date { get; set; }
|
|
} |