Files
PepApi.Core/PepLib.Core/Codes/Comment.cs
2025-10-27 18:48:23 -04:00

33 lines
532 B
C#

namespace PepLib.Codes
{
public class Comment : ICode
{
public Comment()
{
}
public Comment(string value)
{
Value = value;
}
public string Value { get; set; }
public CodeType CodeType()
{
return Codes.CodeType.Comment;
}
public ICode Clone()
{
return new Comment(Value);
}
public override string ToString()
{
return ':' + Value;
}
}
}