using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace AMESCoreStudio.Web.ViewModels.QRS
{
    public class QRS014CViewModel
    {
        public QRS014CViewModel()
        {
            FPYDatas = new List<FPY4WeekGroup>();
        }

        public List<FPY4WeekGroup> FPYDatas { get; set; }
    }
    
    public class FPY4WeekGroup
    {

        /// <summary>
        /// 周别
        /// </summary>
        public string Week { get; set; }

        /// <summary>
        /// 良率
        /// </summary>
        public double Yield { get; set; }
    }
}