1 Star 0 Fork 1

jufeng9318/StockSharp

forked from yu3a/StockSharp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CandleElement.cs 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
StockSharp Dev1 提交于 8年前 . C# 7.0 features.
#region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/StockSharp/StockSharp/blob/master/LICENSE
Removal of this comment is a violation of the license agreement.
Project: StockSharp.Configuration.ConfigurationPublic
File: CandleElement.cs
Created: 2015, 11, 11, 2:32 PM
Copyright 2010 by StockSharp, LLC
*******************************************************************************************/
#endregion S# License
namespace StockSharp.Configuration
{
using System.Configuration;
/// <summary>
/// Represents the custom candle.
/// </summary>
public class CandleElement : ConfigurationElement
{
private const string _typeKey = "type";
/// <summary>
/// Custom candle.
/// </summary>
[ConfigurationProperty(_typeKey, IsRequired = true, IsKey = true)]
public string Type
{
get => (string)this[_typeKey];
set => this[_typeKey] = value;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/jufeng9318/StockSharp.git
git@gitee.com:jufeng9318/StockSharp.git
jufeng9318
StockSharp
StockSharp
master

搜索帮助