DD.WellWorkover.Cloud/AsbCloudApp/Data/Progress/ProgressExceptionDto.cs

19 lines
456 B
C#
Raw Normal View History

using System;
2023-12-27 13:07:41 +05:00
namespace AsbCloudApp.Data.Progress;
/// <summary>
/// DTO прогресса с ошибкой
/// </summary>
public class ProgressExceptionDto : ProgressDto
2023-12-27 13:07:41 +05:00
{
/// <summary>
/// Отображаемый текст ошибки
/// </summary>
public string Message { get; set; } = null!;
/// <summary>
/// Инфо об исключении
/// </summary>
public Exception Exception { get; set; } = null!;
}