Files
ZHGD_Web/Assets/UniversalMediaPlayer/Scripts/Sources/Services/Helpers/Operations.cs
2025-07-13 23:16:20 +08:00

32 lines
611 B
C#

namespace UMP.Services.Helpers
{
internal struct Operations
{
private string _reverse;
private string _swap;
private string _splice;
public Operations(string reverse, string swap, string splice)
{
_reverse = reverse;
_swap = swap;
_splice = splice;
}
public string Reverse
{
get { return _reverse; }
}
public string Swap
{
get { return _swap; }
}
public string Splice
{
get { return _splice; }
}
}
}