10 lines
192 B
C#
10 lines
192 B
C#
namespace VeterinaryDataModels.Models
|
|
{
|
|
public interface IOwnerModel : IId
|
|
{
|
|
string OwnerFIO { get; }
|
|
string Login { get; }
|
|
string Password { get; }
|
|
}
|
|
}
|