forked from ddrilling/AsbCloudServer
14 lines
253 B
C#
14 lines
253 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Well related DTO
|
|||
|
/// </summary>
|
|||
|
public interface IWellRelated
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Well id in db
|
|||
|
/// </summary>
|
|||
|
public int IdWell { get; set; }
|
|||
|
}
|
|||
|
}
|