bitwarden-android/src/App/Abstractions/IDataObject.cs
2016-05-02 02:52:09 -04:00

9 lines
147 B
C#

using System;
namespace Bit.App.Abstractions
{
public interface IDataObject<T> where T : IEquatable<T>
{
T Id { get; }
}
}