mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
385 B
C#
17 lines
385 B
C#
using ACE.Entity.Enum.Properties;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
public struct GenericPropertyId
|
|
{
|
|
public GenericPropertyId(uint propertyId, PropertyType propertyType)
|
|
{
|
|
PropertyId = propertyId;
|
|
PropertyType = propertyType;
|
|
}
|
|
|
|
public uint PropertyId { get; set; }
|
|
|
|
public PropertyType PropertyType { get; set; }
|
|
}
|
|
}
|