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

25 lines
729 B
C#

using PhoneToolMX.Data;
using PhoneToolMX.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace PhoneToolMX.Models {
public class Extension: OwnedBase {
public ICollection<Phone> Phones { get; set; }
[Header("Ext.", Primary = true, Small = true)]
public int ExtId { get; set; }
[Header("Directory Name")]
[Required]
public string DirectoryName { get; set; }
[Header("Listed?", Small = true)]
public bool Listed { get; set; }
public CustomData HoldMusic { get; set; }
[NotMapped]
public string ListViewName => $"{DirectoryName} ({ExtId})";
}
}