16 lines
295 B
C#
16 lines
295 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; }
|
|
|
|
public string Package { get; set; }
|
|
}
|
|
}
|