mirror of
https://github.com/bitwarden/server.git
synced 2026-02-10 10:55:10 +08:00
12 lines
214 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|