PIbd-22_Filippov_D.S._Cours.../VeterinaryDataModels/Models/IOwnerModel.cs
2024-05-30 07:33:38 +04:00

10 lines
192 B
C#

namespace VeterinaryDataModels.Models
{
public interface IOwnerModel : IId
{
string OwnerFIO { get; }
string Login { get; }
string Password { get; }
}
}