Files
server/src/Core/CurrentContext.cs

15 lines
305 B
C#
Raw Normal View History

2015-12-08 22:57:38 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2017-03-08 21:45:08 -05:00
using Bit.Core.Models.Table;
2015-12-08 22:57:38 -05:00
namespace Bit.Core
{
public class CurrentContext
{
public virtual User User { get; set; }
public virtual string DeviceIdentifier { get; set; }
2015-12-08 22:57:38 -05:00
}
}