9 lines
117 B
C#
9 lines
117 B
C#
namespace DataModels
|
|
{
|
|
public interface IId
|
|
{
|
|
int Id { get; }
|
|
int UserId { get; }
|
|
}
|
|
}
|