This commit is contained in:
mmrbnjd
2024-03-30 15:10:36 +03:30
parent f4588f3426
commit a9e3afdea4
60 changed files with 1752 additions and 70 deletions

View File

@@ -0,0 +1,16 @@
using Microsoft.EntityFrameworkCore.Metadata;
using System.ComponentModel.DataAnnotations;
namespace Back.Data.Models
{
public class SaleLead
{
public int ID { get; set; }
public string cn { get; set; }
public string sn { get; set; }
public string company { get; set; }
public string Mobile { get; set; }
public string Key { get; set; }
public string csr { get; set; }
}
}