Assets.Scripts.Services.Communication.DTOs.LootItemDTO.LootItemDTO C# (CSharp) Method

LootItemDTO() public method

public LootItemDTO ( int type, int subType, string name, int quantity ) : System
type int
subType int
name string
quantity int
return System
        public LootItemDTO(int type, int subType, string name, int quantity)
        {
            this.type = type;
            this.subType = subType;
            this.name = name;
            this.quantity = quantity;
        }
LootItemDTO