20 lines
508 B
C#
Raw Normal View History

2023-04-03 17:46:26 +03:00
using SchoolDataModels.Models;
using System;
2023-04-03 17:26:05 +03:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
2023-04-03 17:46:26 +03:00
public class ClientViewModel : IClientModel
2023-04-03 17:26:05 +03:00
{
public int Id { get; set; }
public string ClientName { get; set; } = string.Empty;
public string ClientEmail { get; set; } = string.Empty;
public string ClientPassword { get; set; } = string.Empty;
public string ClientPhone { get; set; } = string.Empty;
2023-04-03 17:26:05 +03:00
}
}