PIbd-21_Medvedkov_Coursach/ComputerShopDataModels/Models/IUserModel.cs

18 lines
350 B
C#
Raw Normal View History

2024-05-01 04:42:57 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
public interface IUserModel : IId
{
string Fio { get; }
string PhoneNumber { get; }
string Login { get; }
string Password { get; }
string Email { get; }
}
}