Mineplex2018-withcommit/Website/LOC.Core/Model/Account/MacAddress.cs

16 lines
319 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Model.Account
{
using System.Collections.Generic;
using Newtonsoft.Json;
public class MacAddress
{
[JsonIgnore]
public int MacAddressId { get; set; }
public string Address { get; set; }
public virtual List<Account> Accounts { get; set; }
}
}