forked from ddrilling/AsbCloudServer
18 lines
477 B
C#
18 lines
477 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class ReportPropertiesDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public FileInfoDto File { get; set; }
|
|
public int IdWell { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public DateTime Begin { get; set; }
|
|
public DateTime End { get; set; }
|
|
public int Step { get; set; }
|
|
public string Format { get; set; }
|
|
}
|
|
}
|