mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 19:14:22 +00:00
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; }
|
|
}
|
|
}
|