using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.TourismCollege.Model
{
internal class RawMaterial : NotifyBase
{
///
/// 原料ID
///
public string Id { get; set; }
///
/// 原料名称
///
public string Name { get; set; }
}
}