2024-04-27 23:49:22 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TravelAgencyDataModels.Models
|
|
|
|
|
{
|
2024-04-28 23:08:12 +04:00
|
|
|
|
public interface IGuideModel : IId
|
2024-04-27 23:49:22 +04:00
|
|
|
|
{
|
|
|
|
|
string GuideFIO { get; }
|
|
|
|
|
|
|
|
|
|
string Email { get; }
|
|
|
|
|
|
|
|
|
|
string PhoneNumber { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|