PhoneToolMX/PhoneToolMX.Models/Models/Phone.cs
snow flurry 4fb88d6cbb Move Password from Phone to Extension
I misunderstood pjsip's concept of endpoints/AoRs. Multiple devices can be bound to a single endpoint, which in turn can have multiple AoRs. So the password should be bound to an Extension, not a Phone.
2023-10-20 12:57:22 -07:00

27 lines
833 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; }
}
}