Sign in

RCS / RiZhaoXingYeAcs · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • RiZhaoXingYeAcs
  • XingYe_ACS
  • BaseStruct
  • KeyValue.cs
  • 1、更新
    885fabd2
    272091586@qq.com authored
    2021-08-25 09:17:21 +0800  
    Browse Code »
KeyValue.cs 420 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace XingYe_ACS.BaseStruct
{
    public class KeyValue
    {
        /// <summary>
        /// 电量名称
        /// </summary>
        public string keyVariable { get; set; }
        /// <summary>
        /// 电量值
        /// </summary>
        public float value { get; set; }
    }
}