2017-05-27 16:22:58 +02:00
|
|
|
|
namespace Yavsc
|
2016-07-20 13:52:38 +02:00
|
|
|
|
{
|
2018-07-16 02:36:44 +02:00
|
|
|
|
using Abstract.Identity;
|
2016-07-20 13:52:38 +02:00
|
|
|
|
public interface IContact
|
|
|
|
|
|
{
|
|
|
|
|
|
IApplicationUser Owner { get; set; }
|
|
|
|
|
|
string OwnerId { get; set; }
|
|
|
|
|
|
string UserId { get; set; }
|
|
|
|
|
|
}
|
2017-02-07 15:04:58 +01:00
|
|
|
|
}
|