SUBD-Petrushin-Egor-PIbd-22/TaskTrackerDataModels/Models/IProjectModel.cs

14 lines
252 B
C#
Raw Normal View History

2024-05-13 14:29:34 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TaskTrackerDataModels.Models
{
public interface IProjectModel : IId
{
string ProjectName { get; }
}
}