1
0
Files
mineplex-crepe/Website/LOC.Core/Model/Account/MacAddress.cs

16 lines
319 B
C#
Raw Normal View History

2021-08-19 16:35:32 +07: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; }
}
}