11 lines
224 B
C#
11 lines
224 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
||
|
|
{
|
||
|
|
public class DisciplineCalendarRequest
|
||
|
|
{
|
||
|
|
public int year { get; set; }//
|
||
|
|
public int month { get; set; }//
|
||
|
|
}
|
||
|
|
}
|