Files
PIbd-31_Egorov_M.A._COP_34/Components/Models/IDepartmentModel.cs
2025-09-05 16:30:40 +04:00

17 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public interface IDepartmentModel : IId
{
string Name { get; }
string Target { get; }
string DepartmentType { get; }
string? ReportDate { get; }
}
}