#nullable enable namespace PluralKit.Core { public class GroupPatch: PatchObject { public Partial Name { get; set; } public Partial Description { get; set; } public override UpdateQueryBuilder Apply(UpdateQueryBuilder b) => b .With("name", Name) .With("description", Description); } }