Files
bright-glimmer/BrightGlimmer.Domain/Phone.cs
2019-04-24 17:50:37 +00:00

16 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BrightGlimmer.Domain
{
[Table("Phones")]
public class Phone : Entity
{
public PhoneType Type { get; set; }
public int AreaCode { get; set; }
public int Number { get; set; }
}
}