using System; using System.Collections.Generic; namespace LibSearchBox { public class DocumentMeta { public string Title { get; set; } public List Tags { get; private set; } public DocumentMeta(string inTitle, IEnumerable inTags) { Title = inTitle; Tags = new List(inTags); } public void ReplaceTags(IEnumerable newTags) { Tags.Clear(); Tags.AddRange(newTags); } } }