mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 08:13:20 +00:00
10 lines
147 B
C#
10 lines
147 B
C#
using System;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IDataObject<T> where T : IEquatable<T>
|
|
{
|
|
T Id { get; }
|
|
}
|
|
}
|