using System; using System.Linq; namespace Sony.Filtr.Contracts.Entities { [Serializable] public class Tag { public const string Version = "1"; public string Name { get; set; } public double Score { get; set; } } }