14 lines
No EOL
296 B
C#
14 lines
No EOL
296 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.Families.Warehouse
|
|
{
|
|
[ProtoContract]
|
|
public class FamilyWarehouseGetItemsRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public long FamilyId { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public long? CharacterId { get; set; }
|
|
}
|
|
} |