12 lines
293 B
C#
Raw Normal View History

2024-05-13 09:00:08 +04:00
using DeviceDataModels.Enums;
namespace DeviceDataModels.Models
{
public interface IStaffModel : IId
{
string FullName { get; }
string Department { get; }
string Email { get; }
string Password { get; }
AccessLevel AccessLevel { get; }
}
}