mirror of https://github.com/icedream/npsharp.git
22 lines
421 B
C#
22 lines
421 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Security.Cryptography.X509Certificates;
|
|||
|
using System.Text;
|
|||
|
using BrightstarDB.EntityFramework;
|
|||
|
|
|||
|
namespace NPSharp.CommandLine.Server.Database
|
|||
|
{
|
|||
|
[Entity]
|
|||
|
public interface IFriend
|
|||
|
{
|
|||
|
string Id { get; }
|
|||
|
|
|||
|
IUser User { get; }
|
|||
|
|
|||
|
uint FriendUserId { get; set; }
|
|||
|
|
|||
|
string FriendName { get; set; }
|
|||
|
}
|
|||
|
}
|