Case_accounting/CaseAccounting/CaseAccountingDataModels/Models/IUserModel.cs

17 lines
316 B
C#
Raw Normal View History

2023-05-18 01:15:02 +04:00
using CaseAccountingDataModels.Enum;
using System;
2023-03-26 17:56:26 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingDataModels.Models
{
public interface IUserModel : IId
{
string Login { get; }
string Password { get; }
2023-05-18 01:15:02 +04:00
Role Role { get; }
2023-03-26 17:56:26 +04:00
}
}