10 lines
186 B
C#
10 lines
186 B
C#
namespace YavscLib
|
|
{
|
|
public interface IContact
|
|
{
|
|
IApplicationUser Owner { get; set; }
|
|
string OwnerId { get; set; }
|
|
string UserId { get; set; }
|
|
}
|
|
}
|