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 IResultModel : IId
|
2024-05-13 14:53:28 +04:00
|
|
|
|
{
|
|
|
|
|
string Grade { get; }
|
|
|
|
|
int StudentId { get; }
|
|
|
|
|
int SubjectId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|