10 lines
212 B
C#
10 lines
212 B
C#
using TightWiki.Models.DataModels;
|
|
|
|
namespace TightWiki.Models.ViewModels.Admin
|
|
{
|
|
public class DatabaseViewModel : ViewModelBase
|
|
{
|
|
public List<DatabaseInfo> Info { get; set; } = new();
|
|
}
|
|
}
|