forked from ddrilling/AsbCloudServer
27 lines
639 B
C#
27 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
#nullable enable
|
|
/// <summary>
|
|
/// Дела скважины
|
|
/// </summary>
|
|
public class WellCaseDto
|
|
{
|
|
/// <summary>
|
|
/// Скважина
|
|
/// </summary>
|
|
public int IdWell { get; set; }
|
|
|
|
/// <summary>
|
|
/// Документ дела скважины
|
|
/// </summary>
|
|
public IEnumerable<WellFinalDocumentDto> WellFinalDocuments { get; set; } = Enumerable.Empty<WellFinalDocumentDto>();
|
|
}
|
|
#nullable disable
|
|
}
|