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