WarningReasonWindow.cs 477 Bytes
Newer Older
1 2 3 4 5 6
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

潘栩锋's avatar
潘栩锋 committed
7
namespace FLY.Thick.Base.UI
8 9 10 11 12 13 14 15 16 17
{
    public class WarningReasonWindow: FLY.OBJComponents.Client.BufferWindow<FLY.OBJComponents.Common.FlyData_WarningHistory>
    {
        public WarningReasonWindow(FLY.OBJComponents.IService.IWarningService warningService, int size):
            base(warningService.ReasonList, size)
        {
            
        }
    }
}