SUBD/PersonnelDepartment/PersonnelDepartmentDataModels/Models/IPositionModel.cs

14 lines
239 B
C#
Raw Normal View History

2024-05-20 01:09:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PersonnelDepartmentDataModels.Models
{
public interface IPositionModel : IId
{
string Name { get; }
}
}