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

19 lines
392 B
C#
Raw Normal View History

namespace AsbCloudApp.Data.Progress;
2023-12-27 13:07:41 +05:00
/// <summary>
/// DTO прогресса
/// </summary>
public class ProgressDto
{
/// <summary>
2023-12-27 13:07:41 +05:00
/// прогресс 0 - 100%
/// </summary>
2023-12-27 13:07:41 +05:00
public float Progress { get; set; }
2023-12-27 13:07:41 +05:00
/// <summary>
/// название текущей операции генерации
/// </summary>
public string? Operation { get; set; }
}