generated from Integry/Template_NetMauiBlazorHybrid
15 lines
346 B
C#
15 lines
346 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace salesbook.Shared.Core.Dto.JobProgress;
|
|
|
|
public class CRMJobStatusDTO
|
|
{
|
|
[JsonPropertyName("completed")]
|
|
public bool Completed { get; set; }
|
|
|
|
[JsonPropertyName("progress")]
|
|
public bool Progress { get; set; }
|
|
|
|
[JsonPropertyName("skip")]
|
|
public bool Skip { get; set; }
|
|
} |