forked from ddrilling/AsbCloudServer
18 lines
482 B
C#
18 lines
482 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class ReportPropertiesDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string FullName { get; set; }
|
|||
|
public int WellId { 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; }
|
|||
|
}
|
|||
|
}
|