1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 11:13:27 +00:00
Files
server/src/Core/CurrentContext.cs
2015-12-08 22:57:38 -05:00

14 lines
239 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Domains;
namespace Bit.Core
{
public class CurrentContext
{
public virtual User User { get; set; }
}
}