using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Enumerations; namespace Tango.BL.Entities { public class FseVersion : FseVersionBase { /// /// Gets or sets the enum version of the build variant. /// [NotMapped] [JsonIgnore] public FSEBuildVariants Build { get { return (FSEBuildVariants)BuildVariant; } set { BuildVariant = value.ToInt32(); } } } }