Files
server/src/Core/Entities/ITableObject.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
175 B
C#
Raw Normal View History

2017-07-14 09:05:15 -04:00
using System;
namespace Bit.Core.Entities
2017-07-14 09:05:15 -04:00
{
public interface ITableObject<T> where T : IEquatable<T>
{
T Id { get; set; }
void SetNewId();
}
}