20 lines
335 B
C#
20 lines
335 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FactoryDataModels.Models
|
|||
|
{
|
|||
|
public interface IEngenierModel : IId
|
|||
|
{
|
|||
|
string Password { get; }
|
|||
|
|
|||
|
string Fio { get; }
|
|||
|
|
|||
|
string Email { get; }
|
|||
|
|
|||
|
}
|
|||
|
}
|