yavsc/YavscLib/IContact.cs

9 lines
189 B
C#

8 years ago
namespace Yavsc.Models
{
public interface IContact
{
IApplicationUser Owner { get; set; }
string OwnerId { get; set; }
string UserId { get; set; }
}
}