10 lines
294 B
C#
10 lines
294 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CompanyManagment.App.Contracts.Contact2;
|
|
|
|
public class CreateContact2
|
|
{
|
|
[Required(ErrorMessage = " مخاطب نباید خالی باشد")]
|
|
public string NameContact { get; set; }
|
|
public long Contact_Id { get; set; }
|
|
} |