mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
13 lines
251 B
C#
13 lines
251 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.Shard;
|
|
|
|
public partial class ConfigPropertiesLong
|
|
{
|
|
public string Key { get; set; }
|
|
|
|
public long Value { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
}
|