using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Requests;
///
/// Запрос на получение записей качества бурения
///
public class DrillingQualityRequest
{
///
/// идентификаторы скважин
///
[Required]
public IEnumerable IdsWell { get; set; } = null!;
///
/// Больше или равно дате
///
public DateTimeOffset GeDate { get; set; } = DateTimeOffset.MinValue;
///
/// Меньше или равно дате
///
public DateTimeOffset LeDate { get; set; } = DateTimeOffset.MaxValue;
}