21 lines
294 B
C#
21 lines
294 B
C#
using System;
|
|
|
|
namespace DarkTonic.MasterAudio
|
|
{
|
|
[Serializable]
|
|
public class SongMetadataIntValue
|
|
{
|
|
public string PropertyName;
|
|
|
|
public int Value;
|
|
|
|
public SongMetadataIntValue(SongMetadataProperty prop)
|
|
{
|
|
if (prop != null)
|
|
{
|
|
PropertyName = prop.PropertyName;
|
|
}
|
|
}
|
|
}
|
|
}
|