8 lines
138 B
C#
8 lines
138 B
C#
namespace Yavsc
|
|
{
|
|
public interface IContact
|
|
{
|
|
string OwnerId { get; set; }
|
|
string UserId { get; set; }
|
|
}
|
|
}
|