PhoneToolMX/PhoneToolMX.Models/Models/User.cs

11 lines
316 B
C#
Raw Normal View History

2023-10-18 04:55:10 +00:00
using Microsoft.AspNetCore.Identity;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace PhoneToolMX.Models {
public class User : IdentityUser<string>
{
public ICollection<Phone> Phones;
public ICollection<Extension> Extensions;
}
}