You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
279 B
13 lines
279 B
namespace Win_in.Sfs.Shared.Domain;
|
|
|
|
public interface IHasContacts
|
|
{
|
|
//联系人姓名
|
|
public string ContactName { get; set; }
|
|
|
|
//联系人电话
|
|
public string ContactPhone { get; set; }
|
|
|
|
//联系人电子邮件
|
|
public string ContactEmail { get; set; }
|
|
}
|
|
|