mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
21 lines
484 B
C#
21 lines
484 B
C#
|
|
namespace nksrv.Utils
|
|
{
|
|
public class NetUtils
|
|
{
|
|
public static NetUserItemData ToNet(ItemData item)
|
|
{
|
|
return new()
|
|
{
|
|
Corporation = item.Corp,
|
|
Count = item.Count,
|
|
Csn = item.Csn,
|
|
Exp = item.Exp,
|
|
Isn = item.Isn,
|
|
Lv = item.Level,
|
|
Position = item.Position,
|
|
Tid = item.ItemType
|
|
};
|
|
}
|
|
}
|
|
} |