mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
19 lines
407 B
C#
19 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Database.Models
|
|
{
|
|
public class Alias
|
|
{
|
|
[Key]
|
|
public int AliasId { get; set; }
|
|
public int ClientId { get; set; }
|
|
public string Name { get; set; }
|
|
public string IP { get; set; }
|
|
}
|
|
}
|