mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
15 lines
300 B
C#
15 lines
300 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; }
|
|
public virtual string DeviceIdentifier { get; set; }
|
|
}
|
|
}
|