Files
bright-glimmer/BrightGlimmer.Data/Domain/Phone.cs
2019-04-22 22:46:39 +00:00

15 lines
309 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BrightGlimmer.Data.Domain
{
public class Phone
{
public Guid Id { get; set; }
public PhoneType Type { get; set; }
public int AreaCode { get; set; }
public int Number { get; set; }
}
}