Mini-AB/AB.Contracts/SupplierForCreationDto.cs

28 lines
575 B
C#

using System.Runtime.Serialization;
namespace AB.Contracts;
public class SupplierForCreationDto
{
public string Salutation { get; set; }
public string Name1 { get; set; }
public string Name2 { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public string TaxId { get; set; }
[DataMember(Name = "PreferredCommunication", EmitDefaultValue = true)]
public PreferredCommunicationType PreferredCommunication { get; set; }
public IEnumerable<ContactPersonDto> ContactPersons { get; set; }
}