9 lines
200 B
C#
9 lines
200 B
C#
namespace pet_companion_api.Models
|
|
{
|
|
public class PetUpdateActionRequest
|
|
{
|
|
public PetAction? Action { get; set; }
|
|
public PetActionGather? PetActionGather { get; set; }
|
|
}
|
|
}
|