using System.ComponentModel.DataAnnotations; namespace Wonky.Entity.DTO; public class UpdateErpDto { [MaxLength(100)] public string Address1 { get; set; } = ""; [MaxLength(50)] public string Address2 { get; set; } = ""; [MaxLength(100)] public string Attention { get; set; } = ""; [MaxLength(30)] public string City { get; set; } = ""; [MaxLength(80)] public string Email { get; set; } = ""; [MaxLength(30)] public string Mobile { get; set; } = ""; [MaxLength(100)] public string Name { get; set; } = ""; [MaxLength(30)] public string Phone { get; set; } = ""; [MaxLength(20)] public string ZipCode { get; set; } = ""; }