1
0
mirror of https://github.com/bitwarden/server synced 2026-01-10 04:23:31 +00:00
Files
server/src/Core/CurrentContext.cs
2017-03-08 21:45:08 -05:00

15 lines
305 B
C#

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