DD.WellWorkover.Cloud/AsbCloudApp/Data/DailyReport/ItemInfoDto.cs

27 lines
845 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace AsbCloudApp.Data.DailyReport
{
/// <summary>
/// хранение дополнительной информации о записи
/// автоматическое формирование данных на серверной стороне
/// </summary>
public class ItemInfoDto
{
/// <summary>
/// пользователь, внесший изменения
/// </summary>
public int? IdUser { get; set; }
/// <summary>
/// имя пользователя, внесшего изменения
/// </summary>
public string? UserName { get; set; }
/// <summary>
/// дата последнего обновления
/// </summary>
public DateTimeOffset? LastUpdateDate { get; set; }
}
}