mirror of
https://github.com/actions/runner.git
synced 2025-12-18 00:07:08 +00:00
23 lines
545 B
C#
23 lines
545 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Runtime.Serialization;
|
|
using GitHub.Services.WebApi.Internal;
|
|
|
|
namespace GitHub.DistributedTask.ObjectTemplating.Tokens
|
|
{
|
|
[DataContract]
|
|
[ClientIgnore]
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public abstract class LiteralToken : ScalarToken
|
|
{
|
|
public LiteralToken(
|
|
Int32 tokenType,
|
|
Int32? fileId,
|
|
Int32? line,
|
|
Int32? column)
|
|
: base(tokenType, fileId, line, column)
|
|
{
|
|
}
|
|
}
|
|
}
|