mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 16:13:12 +08:00
10 lines
186 B
C#
10 lines
186 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Core.Models;
|
|
|
|
public interface IExternal
|
|
{
|
|
string ExternalId { get; }
|
|
}
|