9 lines
197 B
C#
9 lines
197 B
C#
namespace LocationsApi.Models;
|
|
|
|
public class InteractLocationObjectRequest
|
|
{
|
|
public string CharacterId { get; set; } = string.Empty;
|
|
|
|
public string ObjectId { get; set; } = string.Empty;
|
|
}
|