using PhoneToolMX.Data; using PhoneToolMX.Models; using PhoneToolMX.Models.ViewModels; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Net.NetworkInformation; using System.Security.Cryptography; namespace PhoneToolMX.Models { public class Phone: OwnedBase { [Required] public PhysicalAddress MacAddress { get; set; } [Header("Name", Primary = true)] [Required] public string FriendlyName { get; set; } [AlwaysInclude] [Required] public PhoneModel Model { get; set; } [AlwaysInclude] public ICollection Extensions { get; set; } public CustomData Background { get; set; } public ICollection Ringtones { get; set; } public string Password { get; set; } } }