You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
487 B
19 lines
487 B
namespace ModelToEntities.Business
|
|
{
|
|
public class InquiryTable
|
|
{
|
|
public int OwnerId { get; set; }
|
|
public string DatabaseName { get; set; }
|
|
public string ConnectionInfo { get; set; }
|
|
|
|
public InquiryTable() { }
|
|
public InquiryTable(int inquiryId, string databaseName, string connectionInfo)
|
|
{
|
|
OwnerId = inquiryId;
|
|
DatabaseName = databaseName;
|
|
ConnectionInfo = connectionInfo;
|
|
}
|
|
|
|
}
|
|
}
|