Files
server/src/Core/Models/IExternal.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
111 B
C#
Raw Normal View History

2017-12-12 13:21:15 -05:00
namespace Bit.Core.Models
{
public interface IExternal
{
string ExternalId { get; }
}
}