You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Semantic/Contracts/WordToken.cs

22 lines
421 B

6 years ago
using System;
using System.Runtime.Serialization;
namespace ZeroLevel.Services.Semantic
{
[Serializable]
[DataContract]
public class WordToken
{
[DataMember]
public readonly string Word;
6 years ago
[DataMember]
public readonly int Position;
public WordToken(string word, int position)
{
Word = word;
Position = position;
}
}
}

Powered by TurnKey Linux.