ace/Source/ACE.Entity/GenericPropertyId.cs

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; }
}
}