mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
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; }
|
|
}
|
|
}
|