c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
14 lines
227 B
C#
14 lines
227 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Data.Abstractions
|
|
{
|
|
public interface IUniqueId
|
|
{
|
|
[NotMapped]
|
|
long Id { get; }
|
|
|
|
[NotMapped]
|
|
string Value { get; }
|
|
}
|
|
}
|