17 lines
333 B
C#
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; }
|
|
}
|
|
}
|