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
2018-03-23 12:50:20 -04:00

12 lines
214 B
C#

using System;
using Bit.Core;
namespace Bit.Admin.Models
{
public class HomeModel
{
public string CurrentVersion { get; set; }
public GlobalSettings GlobalSettings { get; set; }
}
}