PhoneToolMX/PhoneToolMX.Models/Models/Phone.cs
2023-10-17 21:55:10 -07:00

28 lines
879 B
C#

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<Extension> Extensions { get; set; }
public CustomData Background { get; set; }
public ICollection<CustomData> Ringtones { get; set; }
public string Password { get; set; }
}
}