15 lines
254 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 IExamModel : IId
2024-05-13 14:53:28 +04:00
{
int SubjectId { get; }
DateTime Date { get; }
}
}