PIbd-21_Pyatakov_KM_Markov_.../UniversityModels/Models/IDisciplineModel.cs
2023-04-08 13:59:34 +04:00

18 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityModels.Models
{
public interface IDisciplineModel : IId
{
string Name { get; }
int Hours { get; }
bool MarkType { get; }
int StreamId { get; }
int UserId { get; }
}
}