14 lines
250 B
C#
14 lines
250 B
C#
namespace Oqtane.Models
|
|
{
|
|
public class Database
|
|
{
|
|
public string FriendlyName { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string ControlType { get; set; }
|
|
|
|
public string DBType { get; set; }
|
|
}
|
|
}
|