forked from ddrilling/AsbCloudServer
17 lines
296 B
C#
17 lines
296 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudDb.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// For well related entities
|
|||
|
/// </summary>
|
|||
|
public interface IIdWell
|
|||
|
{
|
|||
|
int IdWell { get; set; }
|
|||
|
}
|
|||
|
}
|