2024-04-17 12:30:11 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IExecutorModel : IId
|
|
|
|
|
{
|
|
|
|
|
string ExecutorFIO { get; }
|
2024-04-22 00:15:10 +04:00
|
|
|
|
string? ExecutorEmail { get; }
|
2024-04-17 12:30:11 +04:00
|
|
|
|
string ExecutorPassword { get; }
|
|
|
|
|
string ExecutorNumber { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|