1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 20:23:21 +00:00
Files
server/src/Admin/Models/HomeModel.cs
2022-08-29 16:06:55 -04:00

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; }
}