9 lines
162 B
C#
9 lines
162 B
C#
namespace HospitalDataModels.Models
|
|
{
|
|
public interface IApothecaryModel : IId
|
|
{
|
|
string Login { get; }
|
|
string Password { get; }
|
|
}
|
|
}
|