forked from ddrilling/AsbCloudServer
27 lines
749 B
C#
27 lines
749 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
/// <summary>
|
|
/// DTO элемент композитной скважины
|
|
/// </summary>
|
|
public class WellCompositeDto : IWellRelated
|
|
{
|
|
/// <inheritdoc/>
|
|
[Required]
|
|
public int IdWell { get; set; }
|
|
|
|
/// <summary>
|
|
/// id скважины входящей в композитную для этой
|
|
/// </summary>
|
|
[Required]
|
|
public int IdWellSrc { get; set; }
|
|
|
|
/// <summary>
|
|
/// id секции скважины входящей в композитную для этой
|
|
/// </summary>
|
|
[Required]
|
|
public int IdWellSectionType { get; set; }
|
|
}
|
|
}
|