bitwarden-android/src/App/Abstractions/IDataObject.cs

10 lines
147 B
C#
Raw Normal View History

2016-05-02 09:52:09 +03:00
using System;
namespace Bit.App.Abstractions
{
public interface IDataObject<T> where T : IEquatable<T>
{
T Id { get; }
}
}