17 lines
421 B
C#
17 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HospitalContracts.ViewModels
|
|
{
|
|
public class ReportRecipesViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public string Dose { get; set; } = string.Empty;
|
|
public string ModeofApplication { get; set; } = string.Empty;
|
|
}
|
|
}
|