mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
9 lines
147 B
C#
9 lines
147 B
C#
using System;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IDataObject<T> where T : IEquatable<T>
|
|
{
|
|
T Id { get; }
|
|
}
|
|
}
|