contact updated
This commit is contained in:
@@ -7,5 +7,7 @@ public class CreateContactDto
|
||||
public string? PhoneNumber { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Address { get; set; }
|
||||
public string? City { get; set; }
|
||||
public string? Role { get; set; }
|
||||
public int? CustomerId { get; set; }
|
||||
}
|
||||
@@ -8,5 +8,7 @@ public class UpdateContactDto
|
||||
public string? PhoneNumber { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Address { get; set; }
|
||||
public string? City { get; set; }
|
||||
public string? Role { get; set; }
|
||||
public int? CustomerTypeId { get; set; }
|
||||
}
|
||||
@@ -8,5 +8,7 @@ public class GetContactDto
|
||||
public string? PhoneNumber { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Address { get; set; }
|
||||
public string? City { get; set; }
|
||||
public string? Role { get; set; }
|
||||
public int? CustomerId { get; set; }
|
||||
}
|
||||
@@ -3,4 +3,5 @@ namespace PyroFetes.DTO.Customer.Request;
|
||||
public class CreateCustomerDto
|
||||
{
|
||||
public string? Note { get; set; }
|
||||
public int CustomerTypeId { get; set; }
|
||||
}
|
||||
@@ -4,4 +4,6 @@ public class GetCustomerDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? Note { get; set; }
|
||||
|
||||
public int CustomerTypeId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user