PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AccountsDataModels/Models/IAccountModel.cs

18 lines
383 B
C#
Raw Normal View History

2023-11-16 19:01:46 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountsDataModels.Models
{
public interface IAccountModel : IId
{
string Login { get; }
string Password { get; }
string Email { get; }
2023-11-29 23:40:28 +04:00
public int InterestId { get; }
2023-11-30 00:23:56 +04:00
public string Avatar { get; }
2023-11-16 19:01:46 +04:00
}
}