9 lines
209 B
C#
9 lines
209 B
C#
using OwnChar.Base.Data.Updates;
|
|
|
|
namespace OwnChar.Base.Data.Requests;
|
|
|
|
public class UpdateRequest(OwnCharObjectUpdate update) : OwnCharRequest
|
|
{
|
|
public OwnCharObjectUpdate Update { get; } = update;
|
|
}
|