pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/Snippets/SnippetLinks.cs

61 lines
954 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#region Using Directives
using System;
using System.Collections.Generic;
#endregion Using Directives
namespace ScintillaNET
{
public class SnippetLink
{
#region Fields
private string _key;
private List<SnippetLinkRange> _ranges = new List<SnippetLinkRange>();
#endregion Fields
#region Properties
public string Key
{
get
{
return _key;
}
set
{
_key = value;
}
}
public List<SnippetLinkRange> Ranges
{
get
{
return _ranges;
}
set
{
_ranges = value;
}
}
#endregion Properties
#region Constructors
public SnippetLink(string key)
{
_key = key;
}
#endregion Constructors
}
}