16 lines
459 B
C#
16 lines
459 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Webshop.Application.DTOs.Customers
|
|
{
|
|
public class UpdateCustomerProfileDto
|
|
{
|
|
[Required(ErrorMessage = "Vorname ist erforderlich.")]
|
|
[MaxLength(100)]
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
[Required(ErrorMessage = "Nachname ist erforderlich.")]
|
|
[MaxLength(100)]
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
}
|
|
} |