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

26 lines
730 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; }
}
}