add supplier attributes

This commit is contained in:
2023-06-12 13:13:40 +02:00
parent 9cb007399a
commit 73bfcccc9c
15 changed files with 218 additions and 46 deletions

View File

@@ -0,0 +1,20 @@
namespace AB.Domain.Entities;
public class ContactPerson
{
public Guid ContactPersonId { get; set; }
public Guid SupplierId { get; set; }
public string Salutation { get; set; }
public string Name { get; set; }
public string PhoneNumber { get; set; }
public string Email { get; set; }
public string Notes { get; set; }
}