DD.WellWorkover.Cloud/AsbCloudApp/Data/ReportPropertiesDto.cs

18 lines
488 B
C#
Raw Normal View History

using System;
namespace AsbCloudApp.Data
{
public class ReportPropertiesDto : IId
{
public int Id { get; set; }
public string Name { get; set; }
public string FullName { get; set; }
2021-07-28 09:46:58 +05:00
public int IdWell { get; set; }
public DateTime Date { get; set; }
public DateTimeOffset Begin { get; set; }
public DateTimeOffset End { get; set; }
public int Step { get; set; }
public string Format { get; set; }
}
}