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