PIbd-22_Filippov_D.S._Cours.../VeterinaryDataModels/Models/IOwnerModel.cs

10 lines
192 B
C#
Raw Normal View History

2024-05-30 07:33:38 +04:00
namespace VeterinaryDataModels.Models
{
public interface IOwnerModel : IId
{
string OwnerFIO { get; }
string Login { get; }
string Password { get; }
}
}