2023-02-26 02:05:15 +08:00
|
|
|
namespace ModelStateError.Models;
|
|
|
|
|
|
|
|
public class Contact
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = String.Empty;
|
2023-03-01 02:05:17 +08:00
|
|
|
public string ShortName { get; set; } = String.Empty;
|
2023-02-26 02:05:15 +08:00
|
|
|
public string Email { get; set; } = String.Empty;
|
|
|
|
public string PhoneNumber { get; set; } = String.Empty;
|
|
|
|
}
|