mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
14 lines
239 B
C#
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; }
|
|||
|
}
|
|||
|
}
|