yavsc/Yavsc.Client/IContact.cs

9 lines
189 B
C#
Raw Normal View History

2016-07-20 13:52:38 +02:00
namespace Yavsc.Models
{
public interface IContact
{
IApplicationUser Owner { get; set; }
string OwnerId { get; set; }
string UserId { get; set; }
}
}