final update
This commit is contained in:
15
Website/LOC.Core/Model/Account/MacAddress.cs
Normal file
15
Website/LOC.Core/Model/Account/MacAddress.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user