24 lines
348 B
C#
24 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
|
|
}
|
|
|