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

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

8 lines
138 B
C#
Raw Normal View History

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