16 lines
275 B
C#
16 lines
275 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Runtime.Serialization;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace BS.Shared.Interface
|
|||
|
|
{
|
|||
|
|
public interface IContact
|
|||
|
|
{
|
|||
|
|
ContactType Type { get; }
|
|||
|
|
string Value { get; }
|
|||
|
|
}
|
|||
|
|
}
|