StableVersion4.3/HL_FristAidPlatform_Help/Model/EtiologicalModel.cs

17 lines
334 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
public class EtiologicalModel
{
public string Name { get; set; }
public int Quantity { get; set; }
public int PathogenyID { get; set; }
}
}