DD.WellWorkover.Cloud/AsbCloudDb/Model/IIdWell.cs

17 lines
296 B
C#
Raw Normal View History

2021-08-10 14:35:00 +05:00
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; }
}
}