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

15 lines
260 B
C#
Raw Normal View History

2024-05-13 14:53:28 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TaskTrackerDataModels.Models
{
2024-05-13 16:21:24 +04:00
public interface IStudentModel : IId
2024-05-13 14:53:28 +04:00
{
string Name { get; }
DateTime DateBirth { get; }
}
}