SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomDataModels/AbstractModels/IClient.cs
2024-05-05 21:21:25 +04:00

15 lines
254 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarShowroomDataModels.Models
{
public interface IClient : IId
{
string Name { get; }
string PhoneNumber { get; }
}
}