mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
10 lines
187 B
C#
10 lines
187 B
C#
using Bit.Core.Settings;
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class HomeModel
|
|
{
|
|
public string CurrentVersion { get; set; }
|
|
public GlobalSettings GlobalSettings { get; set; }
|
|
}
|