1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00
Files
mobile/src/App/Abstractions/IDataObject.cs
Kyle Spearrin bc3d9c4465 initial commit
2016-05-02 02:52:09 -04:00

10 lines
147 B
C#

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