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