18 lines
380 B
C#
18 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SushiBarDataModels.Models
|
|
{
|
|
public interface ICookModel : IId
|
|
{
|
|
string CookName { get; }
|
|
string CookSurname { get; }
|
|
int Experience { get; }
|
|
string PhoneNumber { get; }
|
|
string Passport { get; }
|
|
}
|
|
}
|