IW4M-Admin/Data/Abstractions/IUniqueId.cs

14 lines
227 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations.Schema;
namespace Data.Abstractions
{
public interface IUniqueId
{
[NotMapped]
long Id { get; }
[NotMapped]
string Value { get; }
}
}