取名小程序开发

This commit is contained in:
cjd
2025-11-05 00:22:21 +08:00
parent bb90a020dc
commit 25de84e600
6 changed files with 385 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace DouyinApi.Model.Naming
{
public class SurnameValidationRequest
{
[Required]
[MinLength(1)]
[MaxLength(2)]
public string Surname { get; set; } = string.Empty;
}
}