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

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

7 lines
93 B
C#
Raw Normal View History

2022-08-29 14:53:16 -04:00
namespace Bit.Core.Models;
public interface IExternal
2017-12-12 13:21:15 -05:00
{
2022-08-29 14:53:16 -04:00
string ExternalId { get; }
2017-12-12 13:21:15 -05:00
}