9 lines
211 B
C#
9 lines
211 B
C#
|
namespace SchoolDataModels.Models
|
|||
|
{
|
|||
|
public interface ILessonModel : IId
|
|||
|
{
|
|||
|
public string LessonName { get; set; }
|
|||
|
public decimal LessonCost { get; set; }
|
|||
|
public int? EmployeeId { get; set; }
|
|||
|
}
|
|||
|
}
|