Crud implemented by Contact
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
@ -12,6 +13,7 @@ namespace BlazorSyncfusionCrm.Shared
|
||||
public int Id { get; set; }
|
||||
public string FirstName { get; set; } = string.Empty;
|
||||
public string LastName { get; set; } = string.Empty;
|
||||
[Required]
|
||||
public string NickName { get; set; } = string.Empty;
|
||||
public string Place { get; set; } = string.Empty;
|
||||
public bool IsDeleted { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user