17 lines
267 B
C#
17 lines
267 B
C#
namespace AB.Contracts;
|
|
|
|
public class ContactPersonDto
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Salutation { get; set; }
|
|
|
|
public string PhoneNumer { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string Notes { get; set; }
|
|
}
|
|
|